Class_getClassName

Homepage

Returns the class name for the specified Class object.

ClassName := Class_getClassName(ClassObject)

Parameters

ClassObject The Class object to use for the current operation.

Return Value

The class name for ClassObject.

Remarks

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

Related

Class_getClass

Class_isWrapper, Class_isCloneable

Class

Examples

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

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

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

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

Homepage