|
ActiveX.getProperty() |
|
Availability
Windows
Usage
ActiveXinstance.getProperty(propertyName:String):String
Parameters
propertyName:String reference to the Property Name
Returns
A String
Description
Will return the value of an ActiveX/OLE Property.
Notes
Regardless of the property type, the returned value will always be a string.
Example
To receive the value of a property called Movie, in an ActiveX Object referenced as myActiveX :
var result = myActiveX.getProperty("Movie");