Vcl.Grids.TGridDrawState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TGridDrawState = set of (gdSelected, gdFocused, gdFixed, gdRowSelected, gdHotTrack, gdPressed);

C++

typedef System::Set<Vcl_Grids__3, Vcl_Grids__3::gdSelected, Vcl_Grids__3::gdPressed> TGridDrawState;

Properties

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

Description

TGridDrawState represents information useful when rendering the cell of a grid.

TGridDrawState represents state information about the cell of a grid that is being rendered. It is a set that includes one or more of the states listed in the following table.



Value Meaning

gdSelected

The cell is currently selected.

gdFocused

The cell has input focus.

gdFixed

The cell is in the fixed region of the grid.

gdRowSelected

The row is selected.

gdHotTrack

The cell is hot-tracked.

gdPressed

The cell is being pressed on.



See Also