params_array_from

params_array_from(raw_params) Instance Public methods Takes #raw_params and turns it into an array of parameters

restart

restart(*restart_args, &b) Instance Public methods

default

WIN32OLE_PARAM#default Instance Public methods Returns default value. If the default value does not exist, this method returns nil. tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Workbook') method = WIN32OLE_METHOD.new(tobj, 'SaveAs') method.params.each do |param| if param.default puts "#{param.name} (= #{param.default})" else puts "#{param}" end end The above script result is following: Filename FileFormat Password WriteResPassword

setproperty

WIN32OLE.setproperty('property', [arg1, arg2,...] val) Instance Public methods Sets property of OLE object. When you want to set property with argument, you can use this method. excel = WIN32OLE.new('Excel.Application') excel.Visible = true book = excel.workbooks.add sheet = book.worksheets(1) sheet.setproperty('Cells', 1, 2, 10) # => The B1 cell value is 10.

singular?

singular?() Instance Public methods Returns true is this is a singular matrix.

at_beginning_of_year

at_beginning_of_year() Instance Public methods Alias for: beginning_of_year

ignore_whitespace_nodes

ignore_whitespace_nodes() Instance Public methods

set_value_type

set_value_type(val) Instance Public methods Also aliased as: value_type=

schema_search_path

schema_search_path() Instance Public methods Returns the active schema search path.

before_running_rdoc

before_running_rdoc(&block) Instance Public methods The block passed to this method will be called just before running the RDoc generator. It is allowed to modify RDoc::Task attributes inside the block.