GuiLabelSetHorizontalAlign: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
number guiLabelSetHorizontalAlign ( element theLabel, string align, bool wordwrap )
number guiLabelSetHorizontalAlign ( element theLabel, string align, [ bool wordwrap = false ] )
</syntaxhighlight>  
</syntaxhighlight>  



Revision as of 18:30, 5 November 2007

This function sets the horizontal alignment of a text label.

Syntax

number guiLabelSetHorizontalAlign ( element theLabel, string align, [ bool wordwrap = false ] )

Required Arguments

  • theLabel: The text label to set the horizontal alignment on.
  • align: The alignment type. Valid type strings are:
    • "left"
    • "center"
    • "right"
  • wordwrap: Wordwrap...

Returns

Returns true on success, false otherwise.

Example

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