Dgs-dxlabel: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "DGS Properties is always used to change the gui style and make it more fantastic. This page shows the properties of dgs-dxlabel that you could use. ==Main Functions== *dgs...")
 
Line 14: Line 14:


===textcolor===
===textcolor===
The color of the text of the label which can be translated by [[tocolor]].
The color which can be translated by [[tocolor]] of the text of the label.
<syntaxhighlight lang="lua">dgsDxGUISetProperty(label,"textcolor",textcolor)</syntaxhighlight>
<syntaxhighlight lang="lua">dgsDxGUISetProperty(label,"textcolor",textcolor)</syntaxhighlight>
*'''textcolor''' : An integer of the color of the text of the label.
*'''textcolor''' : An integer of the color of the text of the label.

Revision as of 12:58, 18 November 2017

DGS Properties is always used to change the gui style and make it more fantastic.

This page shows the properties of dgs-dxlabel that you could use.

Main Functions

Properties

text

This is equivalent to dgsDxGUISetText/dgsDxGUIGetText.

dgsDxGUISetProperty(label,"text",text)
  • text : A string of the text of the label.

textcolor

The color which can be translated by tocolor of the text of the label.

dgsDxGUISetProperty(label,"textcolor",textcolor)
  • textcolor : An integer of the color of the text of the label.

textsize

The scale of the text of the label. Learn More dxDrawText

dgsDxGUISetProperty(label,"textsize",{scaleX,scaleY})
  • scaleX : A float of the 2D X scale of the text of the label.
  • scaleY : A float of the 2D Y scale of the text of the label.

shadow

The shadow text of the label.

dgsDxGUISetProperty(label,"shadow",{offsetX,offsetY,color})
  • offsetX : A float of the 2D X offset of the shadow text of the label.
  • offsetY : A float of the 2D Y offset of the shadow text of the label.
  • color : An integer of the color of the shadow text of the label.

font

This is equivalent to dgsDxGUISetFont/dgsDxGUIGetFont. Learn More dxDrawText

dgsDxGUISetProperty(label,"font",font)

wordbreak

Whether the word-break is enabled or not. Learn More dxDrawText

dgsDxGUISetProperty(label,"wordbreak",wordbreak)
  • wordbreak : If set to true, the text will wrap to a new line whenever it reaches the right side of the bounding box. If false, the text will always be completely on one line.

colorcoded

Whether the color code is enabled or not. Learn More dxDrawText

dgsDxGUISetProperty(label,"colorcoded",colorcoded)
  • colorcoded : Set to true to enable embedded #FFFFFF color codes.

clip

Whether the clip property is enabled or not. Learn More dxDrawText

dgsDxGUISetProperty(label,"clip",clip)
  • clip : If set to true, the parts of the text that don't fit within the bounding box will be cut off.

rightbottom

Alignment of the text within the label

dgsDxGUISetProperty(label,"rightbottom",{alignX,alignY})
  • alignX : Horizontal alignment of the text within the label. Can be "left", "center" or "right".
  • alignY : Vertical alignment of the text within the label. Can be "top", "center" or "bottom".