Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomMemoProperties.ScrollBars Property

Determines whether a memo editor has scrollbars.

#Declaration

Delphi
property ScrollBars: TcxScrollStyle read; write; default ssNone;

#Property Value

Type Default
TcxScrollStyle ssNone

#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
ssNone A memo control does not have any scrollbars.
ssHorizontal A horizontal scrollbar is displayed at the bottom of a control.
ssVertical A vertical scrollbar is displayed at the right side of a control.
ssBoth A memo has vertical and horizontal scrollbars.

The default value of the ScrollBars property is ssNone.

See Also