GuiGetVisible: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
{{Client function}}
{{Client function}}
__NOTOC__
__NOTOC__
This function returns the visibility state of a GUI element.
This function determines if a GUI element is visible.


==Syntax==  
==Syntax==  

Revision as of 16:18, 18 August 2007

This function determines if a GUI element is visible.

Syntax

bool guiGetVisible ( element guiElement )

Required Arguments

  • guiElement: the GUI element to be checked

Returns

Returns true if the element is visible, false otherwise.

Example

This example toggles the visibility of an element.

function guiToggleVisible ( guiElement )
	-- check if the gui element is visible
	if ( guiGetVisible ( guiElement ) == true ) then
		-- if it is, we hide it
		guiSetVisible ( guiElement, false )
	else
		-- if not, we make it visible
		guiSetVisible ( guiElement, true )
	end
end

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