OnClientGUISize

From Multi Theft Auto: Wiki
Revision as of 14:31, 20 May 2018 by LordHenry (talk | contribs) (→‎See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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