Type:
Class
<code>WIN32OLE</code> objects represent OLE Automation object in Ruby.

By using WIN32OLE, you can access OLE server like VBScript.

Here is sample script.

  require 'win32ole'

  excel = WIN32OLE.new('Excel.Application')
  excel.visible = true
  workbook = excel.Workbooks.Add();
  worksheet = workbook.Worksheets(1);
  worksheet.Range("A1:D1").value = ["North","South","East","West"];
  worksheet.Range("A2:B2").value = [5.2, 10];
  worksheet.Range("C2").value = 8;
  worksheet.Range("D2").value = 20;

  range = worksheet.Range("A1:D2");
  range.select
  chart = workbook.Charts.Add;

  workbook.saved = true;

  excel.ActiveWorkbook.Close(0);
  excel.Quit();

Unfortunately, Win32OLE doesn't support the argument passed by reference directly. Instead, Win32OLE provides WIN32OLE::ARGV. If you want to get the result value of argument passed by reference, you can use WIN32OLE::ARGV.

oleobj.method(arg1, arg2, refargv3)
puts WIN32OLE::ARGV[2]   # the value of refargv3 after called oleobj.method
[]

WIN32OLE[a1,a2,...] Instance Public methods Returns the value of Collection

2015-06-12 20:30:43
new

WIN32OLE.new(server, [host]) â WIN32OLE object Class Public methods Returns

2015-06-12 20:08:22
ole_typelib

WIN32OLE#ole_typelib â The WIN32OLE_TYPELIB object Instance Public methods Returns

2015-06-12 22:00:37
ole_free

WIN32OLE.ole_free(aWIN32OLE) -â number Class Public methods Invokes Release

2015-06-12 20:11:28
ole_obj_help

ole_obj_help() Instance Public methods Alias for:

2015-06-12 21:39:19
const_load

WIN32OLE.const_load( ole, mod = WIN32OLE) Class Public methods Defines the

2015-06-12 19:53:51
[]=

WIN32OLE[a1, a2, ...]=val Instance Public methods Sets the value to

2015-06-12 20:35:06
method_missing

WIN32OLE#method_missing(id [,arg1, arg2, ...]) Instance Public methods Calls

2015-06-12 21:00:55
each

WIN32OLE#each {|i|...} Instance Public methods Iterates over each item of OLE

2015-06-12 20:55:55
setproperty

WIN32OLE.setproperty('property', [arg1, arg2,...] val) Instance Public methods Sets

2015-06-12 22:05:45