Method: WIN32OLE#setproperty
- Defined in:
- win32ole.c
#setproperty('property', [arg1, arg2,...]) ⇒ Object
3070 3071 3072 3073 3074 3075 3076 3077 3078 |
# File 'win32ole.c', line 3070
static VALUE
fole_setproperty(int argc, VALUE *argv, VALUE self)
{
VALUE v = ole_invoke(argc, argv, self, DISPATCH_PROPERTYPUT, FALSE);
if (v == rb_eNoMethodError) {
return rb_call_super(argc, argv);
}
return v;
}
|