TextDestroyDisplay: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
textDestroyDisplay ( myDisplay ) | textDestroyDisplay ( myDisplay ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | |||
{{Text Functions}} |
Revision as of 20:24, 20 May 2006
This function destroys a text display and will unlink all the ]]textitem]]s on it. This does not stop the textitems existing, but anyone who was observing the textitems through this display will stop seeing them.
Syntax
void textDestroyDisplay ( textdisplay display )
Required Arguments
- display: This is the textdisplay that you wish to have destroyed.
Example
This example creates a display then destroys it again straight away.
myDisplay = textCreateDisplay () textDestroyDisplay ( myDisplay )