Vcl.Grids.TGridScrollDirection

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TGridScrollDirection = set of (sdLeft, sdRight, sdUp, sdDown);

C++

typedef System::Set<Vcl_Grids__4, Vcl_Grids__4::sdLeft, Vcl_Grids__4::sdDown> TGridScrollDirection;

Properties

Type Visibility Source Unit Parent
set
typedef
public
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids Vcl.Grids

Description

TGridScrollDirection indicates the direction in which to scroll the cells of a grid control.

TGridScrollDirection is a set of one or two values that indicate the direction in which to scroll a grid. The set contains at least one value and at most one horizontal and one vertical value. The following table lists the possible values:



Value Meaning

sdLeft

Scroll cells horizontally to the left.

sdRight

Scroll cells horizontally to the right.

sdUp

Scroll cells vertically up.

sdDown

Scroll cells vertically down.



See Also