るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.053秒)
トップページ > クエリ:-[x] > クエリ:of[x] > クラス:WIN32OLE_PARAM[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

ライブラリ

検索結果

WIN32OLE_PARAM#output? -> bool (113.0)

パラメータがクライアントからの結果を受け取るためのものかを判定します。

...LEオートメーションのパラメータは、in(クライアントからサーバへ与える。
WIN32OLE_PARAM
#input?が真)、out(サーバがクライアントへ与える。
WIN32OLE_PARAM
#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:
URL false
Flag...
...s false
TargetFrameName false
PostData false
Headers false
Processed true

@see http://msdn.microsoft.com/en-us/library/aa367136(v=VS.85).aspx...