ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Controls, pages and windows / Looper functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Used to find out the element located at a given position in the Looper control (X, Y). This element can be:
  • a row,
  • a control,
  • iPhone/iPad a break.
This function can be used on Looper controls based on a data file or populated programmatically.
Example
// Clic sur le bouton gauche de la souris
x is int = MouseXPos() 
y is int = MouseYPos() 
nRép is int = LooperInfoXY(ZR_Zone1, liLineNumber, x, y) 
Trace("Vous avez cliqué sur la répétition : " + nRép)
Syntax
<Result> = LooperInfoXY(<Looper control> , <Type of information> , <X> , <Y>)
<Result>: Character string or integer
  • Requested information.
  • An empty string ("") if no control is found at specified location.
  • -1 if no row number is found at specified location.
<Looper control>: Control name
Name of the Looper control to be used.
If this parameter corresponds to an empty string (""), LooperInfoXY uses the Looper control to which the current event belongs.
<Type of information>: Constant
Type of information requested:
liBreakNameName of the break at (x,y).
Android This constant is not available.
liControlNameName of the control found at (x,y).
liLineNumberNumber of the row found at (x,y).
liOriginScreenBy default, point (0,0) corresponds to row 1, column 1 (with scrollbars at origin).
If the liOriginScreen constant is combined with the previous constants, the (0,0) point corresponds to the origin of the screen.
This constant cannot be used on its own.
<X>: Integer
X-coordinate (in pixels) to be analyzed. This coordinate is given in relation to the Looper control (if the liOriginScreen constant is not specified).
<Y>: Integer
Y-coordinate (in pixels) to be analyzed. This coordinate is given in relation to the Looper control (if the liOriginScreen constant is not specified).
Business / UI classification: UI Code
Component: wd300obj.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help