DxListRemoveItem

From Multi Theft Auto: Wiki
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