Class_getClass

Homepage

Returns the class name value (including class options) for ClassObject.

Class := Class_getClass(ClassObject)

Parameters

ClassObject The Class object to use for the current operation.

Return Value

The class name value (including class options) for ClassObject.

Remarks

If ClassObject is NULL (0 or blank), the empty string is returned, to indicate an error.

Related

Class_getClassName

Class_isWrapper, Class_isCloneable

Class

Examples

;Creates a new String initialized to "Hello World!"
myString := String_new("Hello World!")

;Outputs the class name value for myString
MsgBox, % "The class name value for myString is: " Class_getClass(myString)

;Creates a new Vector with the default parameters.
myVector := Vector_new()

;Outputs the class name value for myVector
MsgBox, % "The class name value for myVector is: " Class_getClass(myVector)

Homepage