DxListAddItem: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(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...")
 
mNo edit summary
 
Line 5: Line 5:
<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>
<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==
==Sintaxis==
<syntaxhighlight lang="lua">bool dxListAddItem(element, item)</syntaxhighlight>
<syntaxhighlight lang="lua">bool dxListAddItem(element, item string)</syntaxhighlight>


===Argumentos requeridos===
===Argumentos requeridos===
* '''element''': La [[dxList]] creada.
* '''element''': La [[dxList]] creada.
* '''item''': Un texto(string) que se agregara a la lista.
* '''item''': Un string que representa el texto a agregar.


==Ejemplo de Uso==
==Ejemplo de Uso==

Latest revision as of 00:35, 10 August 2023

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 string)

Argumentos requeridos

  • element: La dxList creada.
  • item: Un string que representa el texto a agregar.

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