Vcl.Grids.TCustomGrid.FGridState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

FGridState: TGridState;

C++

TGridState FGridState;

Properties

Type Visibility Source Unit Parent
field protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Specifies state information about how the grid layout changes.

FGridState specifies state information about how the grid layout changes.

The following table lists the possible values for the FGridState field.



Value Meaning

gsNormal

The grid layout is not changing.

gsSelecting

The user is selecting a cell or row.

gsRowSizing

The user is changing the height of a row.

gsColSizing

The user is changing the width of a column.

gsRowMoving

The user is dragging a row to a new position.

gsColMoving

The user is dragging a column to a new position.



FGridState is used internally by the grid controls. Applications should not depend on the value of FGridState.

See Also