WIN32OLE#output?
Instance Public methods
Returns true if argument is output.
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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 Flags false TargetFrameName false PostData false Headers false Processed true |
Please login to continue.