ClassObject Function | |
Retrieves the class object of class.
Namespace:
XSharp.XPP
Assembly:
XSharp.XPP (in XSharp.XPP.dll) Version: 2.19
Syntax FUNCTION ClassObject(
cClassName AS STRING
) AS ClassObject
public static ClassObject ClassObject(
string cClassName
)
Request Example
View SourceParameters
- cClassName
- Type: String
The name of the class whose class object should be returned.
Return Value
Type:
ClassObjectThe function returns the class object of the class with the name <cClassName>.
The return value is NULL_OBJECT when the class does not exist.
See Also