GuiWindowSetSizable: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__  
{{Client function}}
__NOTOC__
This function enables or disables user resizing of a GUI window.
This function enables or disables user resizing of a GUI window.


Line 18: Line 19:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function initialize ()
function initialize ()
--Create a gui window
-- Create a gui window
local window = guiCreateWindow ( 0.50, 0.50, 0.25, 0.25, "Test", true )
local window = guiCreateWindow ( 0.50, 0.50, 0.25, 0.25, "Test", true )
--set it to be not sizable
-- set it to be not sizable
guiWindowSetSizable ( window, false )
guiWindowSetSizable ( window, false )
--Show cursor to check if our changes work fine
-- Show cursor to check if our changes work fine
showCursor ( true )
showCursor ( true )
end
end

Revision as of 15:46, 17 August 2007

This function enables or disables user resizing of a GUI window.

Syntax

bool guiWindowSetSizable ( element theElement, bool status )

Required Arguments

  • theElement: The window to be changed.
  • status: A boolean value indicating whether user resizing is to be enabled or disabled.

Returns

Returns true if the function is successful, false otherwise.

Example

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

function initialize ()
	-- Create a gui window
	local window = guiCreateWindow ( 0.50, 0.50, 0.25, 0.25, "Test", true )
	-- set it to be not sizable
	guiWindowSetSizable ( window, false )
	-- Show cursor to check if our changes work fine
	showCursor ( true )
end
addEventHandler ( "onClientResourceStart", getRootElement(), 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