|
|
|
|
|
ScrollWithFinger (Property) In french: ScrollAuDoigt
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.
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.
- an Image 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.
- an Image control.
<Finger scrolling>: Boolean - True if the control allows finger scrolling,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|