CustomTabPanel.create

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function creates Custom Tabbed Panel.

Syntax

ctabp CustomTabPanel.create(float X, float Y, float Width, float Height, [bool Relative, gui-element Parent])

Required Arguments

  • X - Position on X axis on screen of widget
  • Y - Position on Y axis on screen of widget
  • Width - Width of widget
  • Height - Height of widget

Other Arguments

  • Relative - Relative of coordinates and size (if false, position and size will be absolute). Default - false.
  • Parent - GUI Element of parent. Default - nil.

Returns

Creates tabbed panel and returns object of class CustomTabPanel.

Information

If tabs too much for panel, and they doesn't fit on Tab Panel, they can be scrolled using Middle Mouse Scroller.

Example

Code Example

This example creates Tab Panel with 4 tabs, 2 tabs are disabled by different ways, one tab set selected, and changed minimal length of tab for tab panel:

local Window = CustomWindow.create(50, 50, 240, 190, "Example")

local TabPanel = CustomTabPanel.create(5, 25, 230, 160, false, Window)

local Tab1 = TabPanel:addTab("Tab 1")
local Tab2 = TabPanel:addTab("Tab 2")
local Tab3 = TabPanel:addTab("Tab 3")
local Tab4 = TabPanel:addTab("Tab 4")

TabPanel:setTabEnabled(Tab2, false)
TabPanel:setTabEnabled("Tab 1", false)
TabPanel:setSelectedTab(Tab3)
TabPanel:setTabsMinLength(50)

See Also

Resource Wiki with content located here: Resource:CustomWidgets

Custom Widgets

This methods working for all elements except CustomDialogs and CustomTooltips

Set Functions

Get Functions

Event Functions


Custom Windows

Create Function

Set Functions

Get Functions

Event Functions


Custom Buttons

Create Function

Set Functions

Get Functions

Event Functions


Custom Progress Bars

Create Function

Set Functions

Get Functions

Event Functions


Custom Scroll Bars

Create Function

Set Functions

Get Functions


Custom Edit Boxes

All functions, what has mark CustomEditBox available for CustomEdit, CustomMemo and CustomSpinner.

Create Functions

Set Functions

Get Functions

Event Functions


Custom Check Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Combo Boxes

Create Function

Set Functions

Get Functions

Event Functions


Custom Tabbed Panels

Create Function

Set Functions

Get Functions

Event Functions


Custom Labels

Create Function

Set Functions

Get Functions

Event Functions


Custom Dialogs

Create Function

Event Functions


Custom Tool Tips

Create Function

Set Function

Get Function


Custom Loadings

Create Function

Set Functions

Get Functions


Custom Scroll Panes

Create Function

Set Functions

Get Functions

Event Functions


Custom Table Views

Create Function

Set Functions

Get Functions

Event Functions


Custom Static Images

Create Function

Set Function

Get Function

Event Functions


Custom Text Boxes

Create Function

Set Function

Get Function


Custom Events


Other about Custom Widgets