GuiWindowSetMovable: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (Added OOP Counterpart Information)
 
(4 intermediate revisions by 3 users not shown)
Line 6: Line 6:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool guiWindowSetMovable ( element theElement, bool status )
bool guiWindowSetMovable ( element theElement, bool status )
</syntaxhighlight>  
</syntaxhighlight>
{{OOP||[[Element/GUI/Window|GuiWindow]]:setMovable|movable|guiWindowIsMovable}}


===Required Arguments===  
===Required Arguments===  
Line 26: Line 27:
showCursor ( true )
showCursor ( true )
end
end
addEventHandler ( "onClientResourceStart", getRootElement(), initialize )
addEventHandler ( "onClientResourceStart", resourceRoot, initialize )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{GUI_functions}}
{{GUI_functions}}
{{GUI_events}}

Latest revision as of 11:31, 7 August 2019

This function allows you to specify whether or not a user can move a GUI window.

Syntax

bool guiWindowSetMovable ( element theElement, bool status )

OOP Syntax Help! I don't understand this!

Method: GuiWindow:setMovable(...)
Variable: .movable
Counterpart: guiWindowIsMovable


Required Arguments

  • theElement: The window to be changed.
  • status: A boolean value indicating whether the window is movable or not.

Returns

Returns true if the function is successful, false otherwise.

Example

This example creates a gui window and sets it to be not movable

function initialize ()
	-- Create a gui window
	local window = guiCreateWindow ( 0.50, 0.50, 0.25, 0.25, "Test", true )
	-- set it to be not movable
	guiWindowSetMovable ( window, false )
	-- Show cursor to check if our changes work fine
	showCursor ( true )
end
addEventHandler ( "onClientResourceStart", resourceRoot, initialize )

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows

Input

GUI