OnClientGUISize: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: {{Client event}} __NOTOC__ This event is triggered each time the user resizes a GUI element. ==Parameters== ''None'' ==Source== The source of this event i...)
 
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Client event}}
{{Client event}}
__NOTOC__  
__NOTOC__  
This event is triggered each time the user resizes a GUI element.
This event is triggered when the local client resizes a GUI element.


==Parameters==  
==Parameters==  
''None''
No parameters.


==Source==
==Source==
The [[event system#Event source|source]] of this event is the GUI element which was resized.
The [[event system#Event source|source]] of this event is the GUI element that was resized.


==Example==  
==Example==  
<syntaxhighlight lang="lua">
This example will output the type of GUI element that the client has resized, to the chatbox.
--TODO
<syntaxhighlight lang="lua">addEventHandler("onClientGUISize",guiRoot,function()
outputChatBox("You have resized a "..getElementType(source)..".",255,255,0)
end)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
===GUI events===
{{GUI_events}}
{{GUI_events}}
===Client event functions===
===Client event functions===
{{Client_event_functions}}
{{Client_event_functions}}
[[Category:Needs Example]]

Latest revision as of 14:31, 20 May 2018

This event is triggered when the local client resizes a GUI element.

Parameters

No parameters.

Source

The source of this event is the GUI element that was resized.

Example

This example will output the type of GUI element that the client has resized, to the chatbox.

addEventHandler("onClientGUISize",guiRoot,function()
	outputChatBox("You have resized a "..getElementType(source)..".",255,255,0)
end)

See Also

Input

GUI


Client event functions

Shared