るりまサーチ

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

別のキーワード

  1. win32ole new
  2. win32ole to_s
  3. win32ole name
  4. win32ole ole_type
  5. win32ole ole_free

ライブラリ

クラス

キーワード

検索結果

WIN32OLE_EVENT (38024.0)

OLEオートメーションサーバからのイベント通知を制御するクラスです。

...ント」と呼びます。WIN32OLE_EVENTを利用
すると、ブロックの形式でイベントを受け取るメソッドをサーバへ登録できま
す。

=== サンプルコード

ie = WIN32OLE.new('InternetExplorer.Application.1')
event = WIN32OLE_EVENT.new(ie, 'DWebBrowserEvents2')...
...b = false
event.on_event('DocumentComplete') do |disp, uri|
disp.document.getElementsByTagName('a').each do |e|
puts "#{e.innerHTML}=#{e.href}" #=> ダウンロード=http://www.ruby-lang.org/ja/downloads/ など
end
disp.quit
b = true
end
ie.Navigate2 'http://www.ru...
...by-lang.org/ja/'
loop do
break if b
WIN32OLE_EVENT
.message_loop
end...

WIN32OLE_EVENT#handler=(obj) -> () (21024.0)

イベント処理を実行するオブジェクトを登録します。

...指定します。

class IeHandler
def initialize
@completed = false
end
attr_reader :completed
def onDocumentComplete(disp, uri)
disp.document.getElementsByTagName('a').each do |e|
puts "#{e.innerHTML}=#{e.href}"
end
@completed = true
end
d...
...xplorer.Application.1')
event = WIN32OLE_EVENT.new(ie, 'DWebBrowserEvents2')
event.handler = IeHandler.new
ie.Navigate2 'http://www.ruby-lang.org/ja/'
loop do
break if event.handler.completed
WIN32OLE_EVENT
.message_loop
end
ie.Quit

WIN32OLE_EVENT
#on_eventなどの呼び出しで...

WIN32OLE_EVENT.message_loop -> () (21018.0)

Windowsのメッセージポンプを実行します。

...通知されます。

ie = WIN32OLE.new('InternetExplorer.Application.1')
event = WIN32OLE_EVENT.new(ie, 'DWebBrowserEvents2')
b = false
event.on_event('DocumentComplete') do |disp, uri|
disp.document.getElementsByTagName('a').each do |e|
puts "#{e.innerHTML}=#{e.href}" #=> ダ...
...lang.org/ja/downloads/ など
end
disp.quit
b = true
end
ie.Navigate2 'http://www.ruby-lang.org/ja/'
loop do
break if b
WIN32OLE_EVENT
.message_loop
end

なお、メソッド名はloopですが、呼び出し時および既にキューイングされたメッ
セージの...