|
|
|
|
|
ScrollbarIsVisible (Function) In french: AscenseurEstVisible Used to find out whether the scrollbar of a control in a WINDEV application is visible. IF ScrollbarIsVisible(LIST_MyList, sbHorz) THEN
Info("The list is not wide enough.")
END
Syntax
<Result> = ScrollbarIsVisible(<Control used> [, <Orientation>])
<Result>: Boolean - True if the scrollbar is visible,
- False otherwise.
<Control used>: Control name Name of the control used. <Orientation>: Optional Integer constant Orientation of the scrollbar to use: | | sbHorz | Finds out whether the horizontal scrollbar of the control is visible. | sbVert (Default value) | Finds out whether the vertical scrollbar of the control is visible. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|