guiWindowIsSizable | Multi Theft Auto: Wiki Skip to content

guiWindowIsSizable

Client-side
Server-side
Shared

Pair: guiWindowSetSizable

This function checks if a GUI window is sizable.

OOP Syntax Help! I don't understand this!

  • Method:gui-window:isSizable(...)
  • Variable: .sizable

Syntax

bool guiWindowIsSizable ( ​gui-window guiWindow )
Required arguments
  • guiWindow: The window to check the sizable flag of.

Returns

Returns true if the window is sizable, false if not, nil if an invalid window was provided.

  • bool: result

Code Examples

client
addEventHandler("onClientResourceStart", resourceRoot, function()
local window = guiCreateWindow(0.5, 0.5, 0.22, 0.22, "isSizable window", true)
guiWindowSetSizable(window, false) -- make it unsizable
addCommandHandler("isSizable", function()
local sizable = guiWindowIsSizable(window) -- check the window sizable flag
outputChatBox("Window is " .. (sizable and "sizable" or "unsizable")) -- show info about the window
end)
end)

See Also

GUI Functions