iscom
Determine whether input is COM or ActiveX object.
๐ Syntax
r = iscom(h)
๐ฅ Input argument
h - a nelson variable.
๐ค Output argument
r - a logical: true or false.
๐ Description
r = iscom(h) returns logical true if handle h is a COM or a Microsoftยฎ ActiveXยฎ object. Otherwise, it returns false.
๐ก Example
pWord = actxserver('Word.Application')
iscom(pWord)
delete pWord
iscom(pWord)
clear pWord๐ See also
๐ History
Version
๐ Description
1.0.0
initial version
Last updated
Was this helpful?