External Interfaces/API Reference |
Determine if an item is a method of a COM object
Syntax
Arguments
h
Handle for a COM object previously returned from actxcontrol
, actxserver
, get
, or invoke
.
name
Name of the item to test.
Description
Returns a logical 1
(true
) if the specified name
is a method that you can call on COM object, h
. Otherwise, ismethod
returns logical 0
(false
).
Examples
Create an Excel application and test to see if SaveWorkspace
is a method of the object. ismethod
returns true
:
Try the same test on UsableWidth
, which is a property, and isevent
returns false
:
See Also
isevent (COM) | isprop (COM) |