API:Vcl.StdCtrls.TMemo.ScrollBars
Delphi
property ScrollBars: TScrollStyle read FScrollBars write SetScrollBars default 0;
C++
__property ScrollBars = {default=0};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | published | Vcl.StdCtrls.pas Vcl.StdCtrls.hpp |
Vcl.StdCtrls | TMemo |
Description
Determines whether the memo control has scroll bars. {{#multireplace:Vcl.StdCtrls.TMemo.ScrollBars|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}} inherits from {{#multireplace:Vcl.StdCtrls.TCustomMemo.ScrollBars|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}. All content below this line refers to {{#multireplace:Vcl.StdCtrls.TCustomMemo.ScrollBars|H21=!|H25=%|H28=(|H29=)|H2A=*|H2B=+|H2F=/|H3C=<|H3D==|H3E=>|H5B=[|H5D=]|H5E=^|H7C=|}}.
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