guiWindowIsMovable | Multi Theft Auto: Wiki Skip to content

guiWindowIsMovable

Client-side
Server-side
Shared

Pair: guiWindowSetMovable

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


This function checks if a GUI window is movable.

Syntax

bool guiWindowIsMovable ( gui-window guiWindow )
Required Arguments
  • guiWindow: the window to check the movable flag of

Returns

  • bool: value

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

Code Examples

shared
addEventHandler( "onClientResourceStart", resourceRoot,
function( )
local window = guiCreateWindow( 0.5, 0.5, 0.22, 0.22, "isMovable window", true )
guiWindowSetMovable( window, false ) -- make it unmovable
addCommandHandler( "isMovable",
function( )
local movable = guiWindowIsMovable( window ) -- check the window movable flag
outputChatBox( "Window is " .. ( movable and "movable" or "unmovable" ) ) -- show info about the window
end
)
end
)

See Also

GUI Functions