Vcl.StdCtrls.TCustomMemo.ScrollBars
Delphi
property ScrollBars: System.UITypes.TScrollStyle read FScrollBars write SetScrollBars default ssNone;
C++
__property System::Uitypes::TScrollStyle ScrollBars = {read=FScrollBars, write=SetScrollBars, default=0};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | protected | Vcl.StdCtrls.pas Vcl.StdCtrls.hpp |
Vcl.StdCtrls | TCustomMemo |
Description
Determines whether the memo control has scroll bars.
Use ScrollBars to give a multiline edit control horizontal or vertical scroll bars. ScrollBars can take one of the following values:
| Value | Meaning |
|---|---|
|
ssNone |
The control has no scroll bars. |
|
ssHorizontal |
The control has a single scroll bar on the bottom edge. |
|
ssVertical |
The control has a single scroll bar on the right edge. |
|
ssBoth |
The control has a scroll bar on both the bottom and right edges. |
See Also