Specifies which scroll bars will be visible on a
control. The
ScrollBars property of the
control specifies the scroll bars being visible in the control. By default,
the ScrollBars property is exBoth, which indicates that both scroll bars of
the component are being displayed only when they require
| | Name | Value | Description | |
| |
exNoScroll | 0
|
No scroll bars are shown
| |
| |
exHorizontal | 1
|
The horizontal scroll bar is shown, if it is necessary.
| |
| |
exVertical | 2
|
The vertical scroll bar is shown, if it is necessary.
| |
| |
exBoth | 3
|
(default) Both horizontal and vertical scroll bars are shown, if they are necessary.
| |
| |
exDisableNoHorizontal | 5
|
The horizontal scroll bar is always shown, it is disabled if it is unnecessary.
| |
| |
exDisableNoVertical | 10
|
The vertical scroll bar is always shown, it is disabled if it is unnecessary.
| |
| |
exDisableBoth | 15
|
Both horizontal and vertical scroll bars are always shown, disabled if they are unnecessary.
| |