|
|
|
|
|
ScrollBarShow (Function) In french: AscenseurAffiche Displays (or not) a scrollbar in a WINDEV control (edit control or list box) even if no scrollbar was specified during the control description.
ScrollBarShow(LIST_MyList, sbHorz, False)
Syntax
ScrollBarShow(<Control used> [, <Scrollbar position> [, <Visible>]])
<Control used>: Control name Name of the control used: - Edit control,
- List Box control.
<Scrollbar position>: Optional constant Position of the scrollbar in the control: | | sbBoth | Vertical and horizontal scrollbar. | sbHorz (Default value) | Horizontal scrollbar. | sbVert | Vertical scrollbar. |
<Visible>: Optional boolean - True (default) to make the added scrollbar visible,
- False to make the added scrollbar invisible.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|