GuiHide: Difference between revisions
Jump to navigation
Jump to search
Automatyczna aktualizacja dokumentacji funkcji |
Complete Lua function catalog |
||
| Line 27: | Line 27: | ||
* Available only in client-side resource scripts. | * Available only in client-side resource scripts. | ||
[[Category:Lua Functions]] | |||
[[Category:Client Functions]] | [[Category:Client Functions]] | ||
[[Category:GUI Functions]] | [[Category:GUI Functions]] | ||
Latest revision as of 09:54, 15 August 2026
guiHide
Hides an RML document without destroying it.
Syntax
bool guiHide(DocumentHandle document)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
document |
DocumentHandle |
yes | The document to hide. |
Returns
Returns true when the document is hidden; otherwise returns false.
Examples
Temporarily hide a menu:
guiHide(menuDocument)
Notes
- Available only in client-side resource scripts.