COM_isprop
Determines if input is an existing COM object property.
Syntax
- r = COM_isprop(h, propertyname)
- r = isprop(h, propertyname)
Input argument
- h - a COM object.
- propertyname - a string: property name tested as valid property for the COM object.
Output argument
- r - a logical.
Description
Example
e = actxserver('Excel.Application');
isprop(e, 'Window')
delete(e)
clear e
See also
History
Version | Description |
---|---|
1.0.0 | initial version |
Author
Allan CORNET