|
|
|
|
|
Scroll (Property) In french: Avance
The Scroll property gets and sets the scroll value in a Scrollbar or Range Slider control. This scroll value is used when the user clicks the scroll arrows. Remark: This property is useful when the user must scroll through a large range of values. It allows users to quickly move from one element to another. // Define the maximum value SCROLL_MyScrollbar.MaxValue = 10000 // Define the scroll value // (click between the scrollbar box and the arrow buttons) SCROLL_MyScrollbar.ScrollValue = 1000 // Define the scroll value (click on the arrow buttons) SCROLL_MyScrollbar.Scroll = 100
Syntax
Getting the scroll value of a Scrollbar or Range Slider control Hide the details
<Result> = <Control used>.Scroll
<Result>: Integer Scroll value of the control. <Control used>: Control name Name of the Scrollbar or Range Slider control used.
Setting the scroll value of a Scrollbar or Range Slider control Hide the details
<Control used>.Scroll = <New scroll value>
<Control used>: Control name Name of the Scrollbar or Range Slider control used. <New scroll value>: Integer New scroll value for the control. This value must be greater than or equal to 1.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|