AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / Desarrollar una aplicación o un sitio web / Controles, ventanas y páginas / Controles: tipos disponibles / Control ListView
  • Overview
  • Initializing a ListView control
  • Initializing an element
  • Filling a ListView control
  • Selecting an element in a ListView control
  • Selecting the element of row whose subscript is
  • Positioning on the last element of ListView control
  • Retrieving the element selected in the ListView control
  • Retrieving the subscript of selected element
  • Retrieving the value of selected element
  • Properties specific to the management of ListView controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadApple WatchUniversal Windows 10 App
Otros
Procedimientos almacenados
Handling a ListView control by programming
Overview
WINDEV allows you to handle a ListView control by programming. To do so, use the variable of ListView control in the code. This variable is a numeric variable.
The variable of ListView control:
  • corresponds to the name of ListView control.
  • is initialized with the subscript of the element selected in the Listview.
Note: To handle a ListView element not associated with any stored item, use the following syntax:
<ListView control name> [ <Element subscript>]
Initializing a ListView control

Initializing an element

To initialize an element found in a ListView control, use ListAdd.
ListAdd(LSV_ListView1, "Sun", "C:\IMG\Sun.JPG")
ListAdd(LSV_ListView1, Photo)

Filling a ListView control

To initialize a ListView control, an iteration loop must be used to initialize all control elements.
Subscript is int
FOR Subscript = <Start position> TO <End position>
ListAdd(<ListView control name>, <Value>, <Image>)
END
i is int
FOR i = 1 TO 52
ListAdd(LSV_ListView1, NAME[i], Image[i])
END
Selecting an element in a ListView control

Selecting the element of row whose subscript is <Subscript>

To select the element found at <Subscript> row, use:
  • the direct assignment:
    <ListView control name> = Subscript
  • ListSelectPlus:
    ListSelectPlus(<ListView control name>, <Subscript>)

Positioning on the last element of ListView control

To position on the last element of ListView control, use:
  • ..Count:
    <ListView control name>..Count
  • ListSelectPlus associated with the property ..Count:
    ListSelectPlus(<ListView control name>, <ListView control name>..Count)
  • ListCount:
    ListCount(<ListView control name>)
Retrieving the element selected in the ListView control

Retrieving the subscript of selected element

To retrieve the subscript of selected element, use:
  • the direct reading of element:
    Subscript = <ListView control name>
  • ListSelect:
    Subscript = ListSelect(ListView Name)
Note: For multiselection ListView controls, ListSelect is used to retrieve the selected elements.
// Retrieve the elements found in a multiselection ListView control
Rank is int = 0  // selection number
Subscript is int = 0  // subscript of selected element
LOOP
Rank = Rank + 1
Subscript = ListSelect(LSV_ListView1, Rank)
IF Subscript = - 1 THEN BREAK
END

Retrieving the value of selected element

To retrieve the value of selected element, use one of the following syntaxes:
  • Syntax 1:
    Subscript is int = <ListView control name>
    <Variable> = <ListView control name>[Subscript]
  • Syntax 2:
    <Variable> = <ListView control name>[<ListView control name>]
  • Syntax 3: ..DisplayedValue
    <Variable> = <ListView control name>..DisplayedValue

    Caution: The value stored in programming can differ from the displayed value. To find out the stored value corresponding to one of the rows found in the ListView control, use ..StoredValue.
Properties specific to the management of ListView controls
The following properties are used to manage the ListView controls:
Any type of listview
MemoryAllows you to find out whether the specified control is a memory or browsing ListView control.
ListViewModeChanges the display mode of the ListView control (listview mode, list box mode, panorama mode).
CountAllows you to find out the number of rows found in a ListView control.
VerticalOrientationAllows you to find out and modify the orientation of a ListView control.
FillTypeAllows you to find out how a ListView control is filled (file, memory, variable).
DisplayedValueAllows you to find out the value of the current row or the value of a specific row in the ListView control.
EmptyAllows you to find out whether a ListView control is empty.
Memory listviews only
SortedAllows you to find out whether a memory ListView control is sorted and to sort a memory ListView control (according to the captions of the elements).
Browsing listviews only
BrowsedFileAllows you to find out and modify the file or the query used to display records in the browsing listviews.
AutoBrowseAllows you to find out whether a browse performed in a browsing ListView control is an automatic browse or a programmed browse.
DisplayedItemAllows you to identify or modify the item corresponding to the caption displayed in a ListView control.
DisplayedItemImageAllows you to find out and modify the item corresponding to the image displayed in a ListView control.
StoredItemAllows you to find out and modify the stored item of a ListView control.
BrowsedItemAllows you to find out and modify the item used for the automatic browse of ListView controls.

To find out the entire list of WLanguage properties that can be used with a ListView control, see Properties associated with the ListView control.
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 24/01/2023

Señalar un error o enviar una sugerencia | Ayuda local