Instance_destroy - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Notation
Description
Destroys the object calling the code. To destroy other objects, use the with statement.
Parameters
- none: this function has no parameters
Return Values
This function has no return values.
Example Call
// demonstrates telling an object to destroy itself
with (myobject) {
instance_destroy();
}
NOTOC