DxListRemoveItem

From Multi Theft Auto: Wiki
Revision as of 00:37, 10 August 2023 by ClawSuit (talk | contribs) (Created page with "__NOTOC__ {{Client Function}} Esta funcion elimina un texto o item de 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 dxListRemoveItem(element, index int)</syntaxhighlight> ===Argumentos requeridos=== * '''element''': Elemento dxList creado previamente. * '''index''': Un entero que representa la...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Esta funcion elimina un texto o item de una dxList.

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

Sintaxis

bool dxListRemoveItem(element, index int)

Argumentos requeridos

  • element: Elemento dxList creado previamente.
  • index: Un entero que representa la posicion del texto o item en la dxList.

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 )

--agregamos 3 row
for i = 1, 3 do
   dxListAddItem(list, 'Row '..i)
end

--borramos el segundo row.
dxListRemoveItem(list, 2)

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar