DxListSetItemSelected

From Multi Theft Auto: Wiki
Revision as of 17:03, 6 October 2024 by BR4 (talk | contribs) (Created page with "__NOTOC__ {{Client function}} Esta función sirve para seleccionar una fila de articulos/items 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> ==Syntax== <syntaxhighlight lang="lua"> bool dxListSetItemSelected( element element, int index ) </syntaxhighlight> ===Argumentos requeridos=== * '''element''': El elemento dxList. * '''index'''...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Esta función sirve para seleccionar una fila de articulos/items de una dxList.

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

Syntax

bool dxListSetItemSelected( element element, int index )

Argumentos requeridos

  • element: El elemento dxList.
  • index: El numero de la fila a seleccionar.

Ejemplo de Uso

-- Activación de la libreria
loadstring( exports.dxLibrary:dxGetLibrary( ) )( )

-- Ventana (Opcional)
win = dxWindow(251, 21, 783, 635, 'Window DEMO', true, true)

-- Creamos la lista (dxList).
list = dxList( 312, 347, 250, 203, win )

-- Agregamos 2 items para la lista ↑
dxListAddItem(list, 'Item 1')
dxListAddItem(list, 'Item 2')

-- Acciones y aplicación de la función

boton = dxButton( 276, 80, 100, 40, 'Clickea', win, true)
addEventHandler ( "onClick", boton,
   function()
      dxListSetItemSelected(list, -1) -- Aplicamos el cambio (selecciona el primer item de ejemplo 'Item 1') , puedes probar con 0 también
   end
)

Ver también

General Functions

Window

Button

CheckBox

Edit

GridList

Image

Label

List

ProgressBar

ScrollBar