Vcl.Samples.DirOutln.TDirectoryOutline.ScrollBars

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ScrollBars: TScrollStyle read FScrollBars write SetScrollBars default 3;

C++

__property ScrollBars = {default=3};

Properties

Type Visibility Source Unit Parent
property published
Vcl.Samples.DirOutln.pas
Vcl.Samples.DirOutln.hpp
Vcl.Samples.DirOutln TDirectoryOutline

Description

Specifies whether the grid includes horizontal and vertical scroll bars.

Vcl.Samples.DirOutln.TDirectoryOutline.ScrollBars inherits from Vcl.Grids.TCustomGrid.ScrollBars. All content below this line refers to Vcl.Grids.TCustomGrid.ScrollBars.

Specifies whether the grid includes horizontal and vertical scroll bars.

Use ScrollBars to give the grid horizontal or vertical scroll bars.

Note: If all the cells in the grid fit in the ClientWidth, no horizontal scroll bar appears, even if ScrollBars is ssHorizontal or ssBoth. If all the cells fit in the ClientHeight, no vertical scroll bar appears, even if ScrollBars is ssVertical or ssBoth.

See Also