CustomScrollPane:addElement

From Multi Theft Auto: Wiki
Revision as of 07:14, 21 September 2018 by AriosJentu (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function adding object to Scroll Pane, and some scroll pane parameters were sends to this object. And it's recalculating size of scroll pane with this object inside.

Syntax

nil CustomScrollPane:addElement(cwidget Element)

Required Arguments

  • Element - Custom Widget element.

Example

This example creates window with scroll pane with 2 buttons:

local Window = CustomWindow.create(50, 50, 190, 100, "Example")
local SPane = CustomScrollPane.create(5, 25, 180, 70, false, Window)

local Button = CustomButton.create(50, 5, 80, 25, "Button", false, SPane)

--Its same as this:
local OldVersion = CustomButton.create(50, 35, 80, 25, "Button", false, SPane:getMainElement())
SPane:addElement(OldVersion)  

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