TYPECLASS property (Common)
Description
Returns the Presentation Server Type and Class classification of the specified object.
Property Value
A string containing the TYPE of the object, followed by its class (if it has one), both delimited by a "." character.
Property Traits
Development | Runtime | Indexed | Scaled |
---|---|---|---|
N/A | Get Only | No | No |
Remarks
Not all objects have a CLASS attribute so in these instances some instances the TYPECLASS is the same as the TYPE property.
The class portion of an OLECONTROL control contains its GUID or ProgID, while the class portion of a WINCONTROL contains its Windows ClassName.
Example
* // TYPECLASS example - OLECONTROL controls return a TYPECLASS * // specifier with the GUID/ProgID contained in the CLASS portion OleTypeClass = Get_Property( @Window : ".OLE_WEBBROWSER", "TYPECLASS" ) OleClass = Field( OleTypeClass, ".", 2, 999 )
See Also
TYPE property, OLECONTROL object, WINCONTROL object.