GuiGetFont: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
(OOP syntax)
Line 8: Line 8:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
string, element guiGetFont ( element guiElement )
string, element guiGetFont ( element guiElement )
</syntaxhighlight>  
</syntaxhighlight>
{{OOP||[[GUI widgets|GuiElement]]:getFont|font|guiSetFont}}


===Required Arguments===  
===Required Arguments===  

Revision as of 16:26, 7 November 2018

This function is used to get the current font that is used to draw text in GUI elements.

Syntax

string, element guiGetFont ( element guiElement )

OOP Syntax Help! I don't understand this!

Method: GuiElement:getFont(...)
Variable: .font
Counterpart: guiSetFont


Required Arguments

  • guiElement: element you wish to get the font of.

Returns

  • string A string containing the name of the element's current font, or false if the gui element passed to the function is invalid.
  • element The custom GUI font that is used, or nil otherwise

Example

This example sets and gets the font of a pre-made gui element and outputs it to chat box.

-- We create a dummy gui label to get text of
local dummyGUIElement = guiCreateLabel ( 0.45, 0.48, 0.10, 0.04, "Hello world", true )
guiSetFont ( dummyGUIElement, "sa-gothic" )
-- Output the font of the label to chat box
outputChatBox ( "Font used in the GUI label: " .. guiGetFont ( dummyGuiElement ) )

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows