v = get(h, propertyname)
v = COM_get(h, propertyname)
v = h.propertyname
| Parameter | Description |
|---|---|
| h | a COM object. |
| propertyname | a string: the property's name of COM object. |
| Parameter | Description |
|---|---|
| v | a nelson variable. |
The function returns the value of the property specified in the string, propertyname.
e = actxserver('Excel.Application');
get(e, 'Path')
e.Path
| Version | Description |
|---|---|
| 1.0.0 | initial version |