|
|
|
|
|
ScrollbarMaxPosition (Function) In french: AscenseurPositionMax Retrieves the maximum position of one of the horizontal or vertical scrollbars found in a control of a WINDEV application. // Goes to the last elements of the Table control ScrollbarPosition(TABLE_MyTable, sbVert, ScrollbarMaxPosition(TABLE_MyTable))
Syntax
<Result> = ScrollbarMaxPosition(<Control used> [, <Orientation>])
<Result>: Integer - Maximum position of the scrollbar box (in logical units).
- 0 if the scrollbar does not exist or if it is grayed.
<Control used>: Control name Name of the control used. <Orientation>: Optional Integer constant Orientation of scrollbar for which the position must be retrieved: | | sbHorz | The position is calculated for the horizontal scrollbar of control. | sbVert (Default value) | The position is calculated for the vertical scrollbar of control. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|