GuiSetSelectedTab
From Multi Theft Auto: Wiki
This function is used to change the currently selected tab in a tab panel.
Syntax
bool guiSetSelectedTab ( element tabPanel, element theTab )
Required Arguments
- tabPanel: The tab panel which current tab you want to change.
- theTab: The tab which will be the new active tab.
Returns
Returns true if the selected tab was changed to a new one successfully, false otherwise.
Example
This example changes the selected tab to the next available tab.
local tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true) --create a tab panel which fills the whole window local tab1 = guiCreateTab("Welcome",tabPanel) --create a tab for the tab panel above local tab2 = guiCreateTab("Info",tabPanel)--create another tab for the tab panel at the top function check() if(guiGetSelectedTab(tabPanel)==tab1)then --Check what tab is currently shown guiSetSelected(tabPanel,tab2) --if the "Welcome" tab is selected, change it to tab2("Info" tab) else guiSetSelected(tabPanel,tab1) --if the "Info" tab is selected, change it to tab1("Welcome" tab) end end
See Also
- guiGetInputMode
- guiGetPosition
- guiGetProperties
- guiGetProperty
- guiGetScreenSize
- guiGetSize
- guiGetText
- guiGetVisible
- guiMoveToBack
- guiSetAlpha
- guiSetEnabled
- guiSetFont
- guiSetInputEnabled
- guiSetInputMode
- guiSetPosition
- guiSetProperty
- guiSetSize
- guiSetText
- guiSetVisible
- isChatBoxInputActive
- isConsoleActive
- isDebugViewActive
- isMainMenuActive
- isMTAWindowActive
- isTransferBoxActive
Buttons
Checkboxes
Comboboxes
- guiCreateComboBox
- guiComboBoxAddItem
- guiComboBoxClear
- guiComboBoxGetItemText
- guiComboBoxSetItemText
- guiComboBoxRemoveItem
- guiComboBoxGetSelected
- guiComboBoxSetSelected
Edit fields
Gridlists
- guiCreateGridList
- guiGridListAddColumn
- guiGridListAddRow
- guiGridListAutoSizeColumn
- guiGridListClear
- guiGridListGetItemData
- guiGridListGetItemText
- guiGridListGetRowCount
- guiGridListGetSelectedItem
- guiGridListInsertRowAfter
- guiGridListRemoveColumn
- guiGridListRemoveRow
- guiGridListSetItemData
- guiGridListSetItemText
- guiGridListSetScrollBars
- guiGridListSetSelectedItem
- guiGridListSetSelectionMode
- guiGridListSetSortingEnabled
Memos
Progress bars
Radio buttons
Scrollbars
Scroll panes
- guiCreateScrollPane
- guiScrollPaneGetHorizontalScrollPosition
- guiScrollPaneGetVerticalScrollPosition
- guiScrollPaneSetHorizontalScrollPosition
- guiScrollPaneSetScrollBars
- guiScrollPaneSetVerticalScrollPosition
Static images
Tab panels
- guiGetSelectedTab
- guiSetSelectedTab
Tabs
Text labels
- guiCreateLabel
- guiLabelGetFontHeight
- guiLabelGetTextExtent
- guiLabelSetColor
- guiLabelSetHorizontalAlign
- guiLabelSetVerticalAlign
Windows