DxLabel

From Multi Theft Auto: Wiki
Revision as of 08:35, 6 October 2024 by BR4 (talk | contribs) (Created page with "__NOTOC__ {{Client function}} Esta función crea una etiqueta de texto DX. <small>'''<span style="color:#ff0000; text-shadow:black 0em 0.1em 0.1em;">''Aviso: Esta es una función exportada por Modern-Library!''</span>'''</small> ==Syntax== <syntaxhighlight lang="lua"> element dxLabel( int x, int y, int w, int h, string texto, [ element parent = nil , string alignX = 'left', string alignY = 'top', int outline = nil, int colorText = tocolor(255, 255, 255, 255), int...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Esta función crea una etiqueta de texto DX.

Aviso: Esta es una función exportada por Modern-Library!

Syntax

element dxLabel( int x, int y, int w, int h, string texto, [ element parent = nil , string alignX = 'left', string alignY = 'top', int outline = nil, int colorText = tocolor(255, 255, 255, 255), int colorBorder = tocolor(255, 255, 255, 255), bool guiCoord = false] )

Argumentos requeridos

  • x: Un entero que representa la posición X de la pantalla.
  • y: Un entero que representa la posición Y de la pantalla.
  • w: Un entero que representa el ancho del dxLabel.
  • h: Un entero que representa la altura del dxLabel.
  • texto: Una cadena de texto que representa el titulo visible.

Argumentos Opcionales

  • parent: Este es el padre el cual la dxLabel se adjunta.
  • alignX: Realineación horizontal ('izquierda', 'centro' o 'derecha'): 'left', 'center', 'right'..
  • alignY: Realineación vertical ('arriba', 'centro' o 'abajo'): 'top', 'center', 'bottom'..
  • outline: Un número entero que representa el peso del contorno del texto.
  • colortext: El color del texto, un valor producido por tocolor o 0xAARRGGBB (AA = alfa, RR = rojo, GG = verde, BB = azul).
  • colorborder: El color del borde del texto, un valor producido por tocolor o 0xAARRGGBB (AA = alfa, RR = rojo, GG = verde, BB = azul).
  • guiCoord: Suma de valores para adaptar el tamaño a su respectivo parent. usa true para habilitarlo.

Ejemplo

-- Activación de la libreria

loadstring(exports.dxlibrary:dxGetLibrary())()

-- Texto de Ejemplo

dxLabel(282, 212, 780, 226, 'Label Test', false)

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar