DxListAddItem

From Multi Theft Auto: Wiki
Revision as of 00:20, 10 August 2023 by ClawSuit (talk | contribs) (Created page with "__NOTOC__ {{Client Function}} Esta funcion agrega un texto al final de la una dxList. <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> ==Sintaxis== <syntaxhighlight lang="lua">bool dxListAddItem(element, item)</syntaxhighlight> ===Argumentos requeridos=== * '''element''': La dxList creada. * '''item''': Un texto(string) que se agregara a la lista. ==Eje...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Esta funcion agrega un texto al final de la una dxList.

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

Sintaxis

bool dxListAddItem(element, item)

Argumentos requeridos

  • element: La dxList creada.
  • item: Un texto(string) que se agregara a la lista.

Ejemplo de Uso

loadstring( exports.dxLibrary:dxGetLibrary( ) )( )

--creamos una ventana
win = dxWindow(251, 21, 250, 300, 'Window DEMO', true, true)

--creamos una lista
list = dxList( 312, 347, 250, 203, win )

--le agregamos un valor a la lista.
dxListAddItem(list, 'Ruedas tipo 1')

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar