CustomWindow:showBar

From Multi Theft Auto: Wiki
Revision as of 15:51, 23 July 2018 by AriosJentu (talk | contribs) (Created page with "__NOTOC__ {{Client function}} This function shows Custom Window's side panel. It's just a visual object. == Syntax == <syntaxhighlight lang="lua"> nil CustomWindow:showBar(st...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function shows Custom Window's side panel. It's just a visual object.

Syntax

nil CustomWindow:showBar(string Location, int Lenght)

Required Arguments

  • Location - Side Location of widget. Can be top, bottom, left, right and none
  • Length - Size in pixels of side bar.

Example

Code Example

This example creates two windows with Side Bars:

local WindowTop = CustomWindow.create(50, 50, 260, 100, "Example")
local WindowLeft = CustomWindow.create(95, 155, 150, 100, "Hello World")

WindowTop:showBar("top", 40)
WindowLeft:showBar("left", 55)

WindowTop:setColorScheme(Themes.Dark.Purple)
WindowLeft:setColorScheme(Themes.Light.Red)

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