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