Class_getClassName |
Homepage |
Returns the class name for the specified Class object.
ClassName := Class_getClassName(ClassObject)
| ClassObject | The Class object to use for the current operation. |
The class name for ClassObject.
If ClassObject is NULL (0 or blank), the empty string is returned, to indicate an error.
Class_isWrapper, Class_isCloneable
;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)