Method: WIN32OLE#ole_get_methods

Defined in:
win32ole.c

#ole_get_methodsObject

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

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


3466
3467
3468
3469
3470
# File 'win32ole.c', line 3466

static VALUE
fole_get_methods(VALUE self)
{
    return ole_methods( self, INVOKE_PROPERTYGET);
}