Vcl.ValEdit.TValueListEditor.OnSelectCell

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnSelectCell: TSelectCellEvent read FOnSelectCell write FOnSelectCell;

C++

__property OnSelectCell;

Properties

Type Visibility Source Unit Parent
event published
Vcl.ValEdit.pas
Vcl.ValEdit.hpp
Vcl.ValEdit TValueListEditor

Description

Occurs before a cell in the grid is selected.

Vcl.ValEdit.TValueListEditor.OnSelectCell inherits from Vcl.Grids.TCustomDrawGrid.OnSelectCell. All content below this line refers to Vcl.Grids.TCustomDrawGrid.OnSelectCell.

Occurs before a cell in the grid is selected.

Write an OnSelectCell event handler to specify whether any particular cell in the grid can be selected. The Col and Row parameters indicate the column and row indexes of the cell that is about to be selected. Set the CanSelect parameter to False to prevent the cell being selected.

See Also

Code Examples