COM_methods
Returns the methods name of an COM object.
📝
Syntax
l = COM_methods(h) l = methods(h)
📥
Input Arguments
Parameter
Description
h
a COM object.
📤
Output Arguments
Parameter
Description
l
a cell of strings.
📄
Description
methods
returns a cell of strings with methods name.
💡
Examples
e = actxserver('Excel.Application'); methods(e) delete(e) clear e
🔗
See Also
COM_set
🕔
Version History
Version
Description
1.0.0
initial version
Edit this page on GitHub