Method: WIN32OLE#ole_func_methods

Defined in:
win32ole.c

#ole_func_methodsObject

Returns the array of WIN32OLE_METHOD object . The element of the array is property (settable) of WIN32OLE object.

excel = WIN32OLE.new('Excel.Application')
properties = excel.ole_func_methods


3499
3500
3501
3502
3503
# File 'win32ole.c', line 3499

static VALUE
fole_func_methods(VALUE self)
{
    return ole_methods( self, INVOKE_FUNC);
}