comp • gb • object

Object (gb)

This class includes static methods that allows you to manipulate the objects created by the interpreter.

This class is static.

Static methods

Return the memory address of an object.
Address  
Attach an object to its parent.
Attach  
Calls an object method dynamically.
Call  
Return if an object can raise a specific event, i.e. if the parent of the object, or any observer, has an event handler for that event.
CanRaise  
Returns the class of an object.
Class  
Returns how many times this object is referenced.
Count  
Detaches an object from its parent.
Detach  
Gets the value of an object property dynamically.
GetProperty  
Returns if the specified object is an instance of the specified class, or an inherited one.
Is  
Returns if an object is locked.
IsLocked  
Returns whether an object is valid or not.
IsValid  
Locks an object.
Lock  
Instantiates the class Class.
New  
Returns the parent of an object, i.e. the default event observer it is attached to.
Parent  
Tell an object to raise one of its event.
Raise  
Sets the value of an object property dynamically.
SetProperty  
Return the memory used by an existant object in bytes.
SizeOf  
Returns the class name of an object.
Type  
Unlocks an object.
Unlock