WIN32OLE_EVENT#off_event([event])
Instance Public methods
removes the callback of event.
1 2 3 4 5 6 7 8 | ie = WIN32OLE . new ( 'InternetExplorer.Application' ) ev = WIN32OLE_EVENT . new (ie) ev.on_event( 'BeforeNavigate2' ) {|*args| args.last[ 6 ] = true } ... ev.off_event( 'BeforeNavigate2' ) ... |
Please login to continue.