12件ヒット
[1-12件を表示]
(0.032秒)
ライブラリ
- win32ole (12)
クラス
-
WIN32OLE
_ PARAM (12)
検索結果
-
WIN32OLE
_ PARAM # output? -> bool (29131.0) -
パラメータがクライアントからの結果を受け取るためのものかを判定します。
...。
WIN32OLE_PARAM#input?が真)、out(サーバがクライアントへ与える。
WIN32OLE_PARAM#output?が真)および、inout(クライアントからサーバ
へ与え、サーバがクライアントへ与える)の3種類の方向属性のいずれかを持ち
ます。
output?メ......たはinoutならば真を返します。
tobj = WIN32OLE_TYPE.new('Microsoft Internet Controls', 'DWebBrowserEvents')
method = WIN32OLE_METHOD.new(tobj, 'NewWindow')
method.params.each do |param|
puts "#{param.name} #{param.output?}"
end
The result of above script is following...