GuiDeleteTab: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 2: Line 2:
__NOTOC__  
__NOTOC__  
{{Client function}}
{{Client function}}
This function allows for deletion of a tab from a tab panel
This function deletes a tab from a tab panel.


==Syntax==  
==Syntax==  
Line 19: Line 19:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function deleteTabOnClick ()
function deleteTabOnClick ()
if ( getKeyState ( "lctrl" ) == true ) then --if he's holding down left control
if ( getKeyState ( "lctrl" ) == true ) then   -- if the user is holding down left control
guiDeleteTab ( source )--delete the tab. The function wont work anyway for other types of elements so no check is required.
guiDeleteTab ( source )               -- delete the tab. No need to check if it was actually a tab that was clicked, as this function doesn't work on other controls anyway
end
end
end
end
addEventHandler ( "onClientClick", getRootElement(), deleteTabOnClick  )--add an event handler for this
addEventHandler ( "onClientClick", getRootElement(), deleteTabOnClick  )   -- add an event handler for clicks
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{GUI functions}}
{{GUI functions}}

Revision as of 17:57, 18 August 2007

Dialog-information.png This article needs checking.

Reason(s): This function doesnt actually work. --Talidan2 13:30, 15 August 2007 (CDT)

This function deletes a tab from a tab panel.

Syntax

bool guiDeleteTab ( element tabToDelete )

Required Arguments

  • tabToDelete: This is an element representing the tab that you want to delete.

Returns

Returns true the tab was successfully deleted, false otherwise.

Example

This example removes a tab panel if a user LeftCtrl+Clicks a tab panel.

function deleteTabOnClick ()
	if ( getKeyState ( "lctrl" ) == true ) then    -- if the user is holding down left control
		guiDeleteTab ( source )                -- delete the tab. No need to check if it was actually a tab that was clicked, as this function doesn't work on other controls anyway
	end
end
addEventHandler ( "onClientClick", getRootElement(), deleteTabOnClick  )    -- add an event handler for clicks

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