Class_getClass |
Homepage |
Returns the class name value (including class options) for ClassObject.
Class := Class_getClass(ClassObject)
| ClassObject | The Class object to use for the current operation. |
The class name value (including class options) 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 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)