CustomButton.create

From Multi Theft Auto: Wiki
Revision as of 05:25, 21 July 2018 by AriosJentu (talk | contribs) (→‎Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function creates Custom Button Widget.

Syntax

cbutton CustomButton.create(float X, float Y, float Width, float Height, string Text, [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
  • Text - Text on the Button

Other Arguments

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

Returns

Creates button and returns object of class CustomButton.

Example

Code Example

This example creates window with 3 types of buttons - Classic Text, Only Image, and Text with Image:

local Window = CustomWindow.create(50, 50, 200, 120, "Example")
local TextButton = CustomButton.create(20, 25, 160, 25, "Text Button", false, Window)
local ImageButton = CustomButton.create(20, 55, 160, 25, "Image Button", false, Window)
local TextImageButton = CustomButton.create(20, 85, 160, 25, "Text and Image", false, Window)

ImageButton:setImage(Images.Cross)
ImageButton:setText("")

TextImageButton:setImage(Images.Down)
Window:setColorScheme(Themes.Dark.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