<< COM_range | COM engine | COM_used >> |
set(h, propertyname, value) |
COM_set(h, propertyname, value) |
h.propertyname = value |
a COM object.
a string: the property's name of COM object.
a string, boolean, double ...
The function sets the property specified in the string propertyname to the given value.
pWord = actxserver('Word.Application')
pWord.Visible = true
invoke(pWord, 'Quit')
delete(pWord)
clear pWord
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET