FMX.Grid.TCustomGrid.OnSelectCell

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnSelectCell: TSelectCell read GetOnSelectCell write SetOnSelectCell;

C++

__property TSelectCell OnSelectCell = {read=GetOnSelectCell, write=SetOnSelectCell};

Properties

Type Visibility Source Unit Parent
event public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TCustomGrid


Description

Occurs immediately after a cell in a column is selected.

Write an OnSelectCell event handler to take specific actions when the cell of a column in this grid is selected.

Events occur in the following order:

  1. OnTap
  2. OnSelectCell
  3. OnSelChanged

See Also