ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Looper functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
LooperSelectCount (Function)
In french: ZoneRépétéeSelectOccurrence
Returns the number of selected rows in a Looper control. The selected rows correspond to the current rows on which the selection bar is displayed.
Remark: LooperSelectCount can be used on:
  • a Looper control based on a data file or populated programmatically.
  • a single-selection or multi-selection Looper control.
Example
i is int
NbSelected is int
NbSelected = LooperSelectCount(LOOP_PRODUCT)
FOR i = 1 TO NbSelected
Trace("Selected row: " + i)
END
Syntax
<Result> = LooperSelectCount(<Looper control>)
<Result>: Integer
  • Number of rows selected in the specified Looper control,
  • 0 if no row is selected.
This number can be higher than 1 for multi-selection Looper controls.
<Looper control>: Control name
Name of the Looper control to be used.
If this parameter corresponds to an empty string (""), the Looper control to which the current event belongs is used.
A WLanguage error occurs if this parameter does not correspond to the name of a Looper control.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help