COM_get
Get property value from COM interface.
📝Syntax
v = get(h, propertyname)
v = COM_get(h, propertyname)
v = h.propertyname
📥Input Arguments
Parameter Description
h a COM object.
propertyname a string: the property's name of COM object.
📤Output Arguments
Parameter Description
v a nelson variable.
📄Description

The function returns the value of the property specified in the string, propertyname.

💡Examples
e = actxserver('Excel.Application');
get(e, 'Path')
e.Path
🔗See Also
COM_set
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub