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
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,
  • WindowsLinuxiPhone/iPad a break.
This function can be used on Looper controls based on a data file or populated programmatically.
Example
// Click on the left mouse button
x is int = MouseXPos()
y is int = MouseYPos()
nRow is int = LooperInfoXY(LOOP_Looper1, liLineNumber, x, y)
Trace("You've clicked the row: " + nRow)
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).
AndroidJava This constant is not available.
liControlNameName of the control found at (x, y).
liLineNumberNumber of the row found at (x, y).
liOriginScreenBy default, (0,0) corresponds to row 1, column 1 (the scrollbars being located at the 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: 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