|
|
|
|
|
TouchScrollable (Property) In french: ScrollAuDoigt
Warning
From version 2025, ScrollWithFinger is kept for backward compatibility. This property has been replaced with TouchScrollable.
The TouchScrollable property is used to: - Determine if the control supports touch scrolling.
- Enable or disable touch-responsiveness for a control.
IF CBOX_TouchInterface = True THEN
TABLE_CustomerTable.TouchScrollable = True
ELSE
TABLE_CustomerTable.TouchScrollable = False
END
Syntax
Finding out if a control supports touch scrolling Hide the details
<Result> = <Control used>.TouchScrollable
<Result>: Boolean - True if the control supports touch scrolling,
- 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.
  an Image control.
Enabling or disabling touch scrolling Hide the details
<Control used>.TouchScrollable = <Touch scrolling>
<Control used>: Control name Name of the control used. This control can be: - a List Box control.
- a Table control.
- a Looper control.
  an Image control.
<Touch scrolling>: Boolean - True if the control supports touch scrolling,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|