off_event

WIN32OLE_EVENT#off_event([event])
Instance Public methods

removes the callback of event.

ie = WIN32OLE.new('InternetExplorer.Application')
ev = WIN32OLE_EVENT.new(ie)
ev.on_event('BeforeNavigate2') {|*args|
  args.last[6] = true
}
  ...
ev.off_event('BeforeNavigate2')
  ...
doc_ruby_on_rails
2015-06-12 22:31:57
Comments
Leave a Comment

Please login to continue.