ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Limitations
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
The ScrollWithFinger property is used to:
  • Determine if the content of a control can be moved with the finger ("finger scrolling").
  • Enable or disable touch-responsiveness for a control.
Example
IF CBOX_TouchInterface = True THEN
TABLE_CustomerTable.ScrollWithFinger = True
ELSE
TABLE_CustomerTable.ScrollWithFinger = False
END
Syntax

Finding out whether a control allows finger movement Hide the details

<Result> = <Control used>.ScrollWithFinger
<Result>: Boolean
  • True if the control allows finger movement,
  • False otherwise.
<Control used>: Control name
Name of the control used. This control can be:
  • a List Box control.
  • a Table control.
  • a Looper control.

Enabling or disabling finger movement Hide the details

<Control used>.ScrollWithFinger = <Finger scrolling>
<Control used>: Control name
Name of the control used. This control can be:
  • a List Box control.
  • a Table control.
  • a Looper control.
<Finger scrolling>: Boolean
  • True if the control allows finger scrolling,
  • False otherwise.
Remarks

Limitations

Minimum version required
  • Version 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/03/2023

Send a report | Local help