GuiGetVisible

From Multi Theft Auto: Wiki
Revision as of 14:22, 30 July 2007 by Lil Toady (talk | contribs)
Jump to navigation Jump to search

This function returns the visibility state of a GUI element.

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 element visibility

function guiToggleVisible ( guiElement )
	--we 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