Vcl.DBCtrls.TDBMemo.ScrollBars

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ScrollBars: TScrollStyle read FScrollBars write SetScrollBars default 0;

C++

__property ScrollBars = {default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TDBMemo

Description

Determines whether the memo control has scroll bars.

Vcl.DBCtrls.TDBMemo.ScrollBars inherits from Vcl.StdCtrls.TCustomMemo.ScrollBars. All content below this line refers to Vcl.StdCtrls.TCustomMemo.ScrollBars.

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


Code Examples