CustomWidget:setFont: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (AriosJentu moved page CustomLabel:setFont to CustomWidget:setFont)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
This function sets font for Custom Label.
This function sets font for Custom Widget.


== Syntax ==
== Syntax ==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
nil CustomLabel:setFont(gui-font Font)
nil CustomWidget:setFont(string FontLocation, [float FontSize])
nil CustomLabel:setFont(string FontLocation, [float FontSize])
</syntaxhighlight>
</syntaxhighlight>


=== Required Arguments ===  
=== Required Arguments ===  
In first case:
*'''FontLocation''' - String of font location. For default fonts use function [[CustomWidget:setSystemFont]]
*'''Font''' - Standart GUI-Font.
 
In second case:
*'''FontLocation''' - String of font location.


=== Other Arguments ===  
=== Other Arguments ===  
*'''FontSize''' - Font Size. Default - ''9''.
*'''FontSize''' - Font Size. Default - ''9''.
=== Information ===
First case set font like default GUI Label. Second case creates font inside function using this arguments.


== Example ==
== Example ==
[[Image:CustomFontsExample.png|thumb|right|Code Example]]
This example creates label and changing its font.
This example creates two labels with 2 different font changes.


<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
local Window = CustomWindow.create(50, 50, 150, 85, "Example")
local Window = CustomWindow.create(50, 50, 150, 85, "Example")


local LabelF1 = CustomLabel.create(5, 25, 140, 25, "First Label", false, Window)
local Label = CustomLabel.create(5, 25, 140, 25, "Label", false, Window)
local LabelF2 = CustomLabel.create(5, 55, 140, 25, "Second Label", false, Window)
Label:setFont(Fonts.RobotoThin, 12)
 
local Font = GuiFont.create(Fonts.SeguiReg, 11)
LabelF1:setFont(Font)
LabelF2:setFont(Fonts.RobotoThin, 12)
 
Window.Title:setFont(Font)
</syntaxhighlight>
</syntaxhighlight>
This example looks like very strangely :)


== See Also ==
== See Also ==
{{CWSFUNCS}}
{{CWSFUNCS}}

Latest revision as of 06:48, 21 September 2018

This function sets font for Custom Widget.

Syntax

nil CustomWidget:setFont(string FontLocation, [float FontSize])

Required Arguments

Other Arguments

  • FontSize - Font Size. Default - 9.

Example

This example creates label and changing its font.

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

local Label = CustomLabel.create(5, 25, 140, 25, "Label", false, Window)
Label:setFont(Fonts.RobotoThin, 12)

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