CustomLabel:setColor: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
Line 11: Line 11:
*'''hex6''' - ''string'' with length equal to '''6''', and contains only HEX chars: '''0-9''' and '''A-F'''.
*'''hex6''' - ''string'' with length equal to '''6''', and contains only HEX chars: '''0-9''' and '''A-F'''.
   
   
In first case:
In first case:
=== Required Arguments ===  
=== Required Arguments ===  

Latest revision as of 11:10, 27 July 2018

This function sets color for Custom Label.

Syntax

nil CustomLabel:setColor(hex6 Color)
nil CustomLabel:setColor([float Red, float Green, float Blue])
  • hex6 - string with length equal to 6, and contains only HEX chars: 0-9 and A-F.


In first case:

Required Arguments

  • Color - Color of label


In second case:

Other Arguments

  • Red - Red color
  • Green - Green color
  • Blue - Blue color

Default - White in case of Dark Color Scheme, Dark Grey in case of Light Color Scheme

Information

Do not use this function when you use CustomLabel:setSchematicalColor or CustomLabel:setHoverable functions, because this color is not saving anywhere.

Example

This example creates window with label, and changing it's color:

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

local Label = CustomLabel.create(5, 25, 90, 20, "Hello World", false, Window)
Label:setColor("DA6262") --Light Red Color
end)

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