TcxCustomMemoProperties.ScrollBars Property
In This Article
Determines whether a memo editor has scrollbars.
#Declaration
Delphi
property ScrollBars: TcxScrollStyle read; write; default ssNone;
#Property Value
Type | Default |
---|---|
Tcx |
ss |
#Remarks
Use the ScrollBars property to provide a memo editor with horizontal and/or vertical scrollbars. The following table lists all the relevant values for the ScrollBars property:
Value | Meaning |
---|---|
ss |
A memo control does not have any scrollbars. |
ss |
A horizontal scrollbar is displayed at the bottom of a control. |
ss |
A vertical scrollbar is displayed at the right side of a control. |
ss |
A memo has vertical and horizontal scrollbars. |
The default value of the ScrollBars property is ssNone.
See Also