Vcl.Grids.TCustomGrid.SetEditText

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetEditText(ACol, ARow: Longint; const Value: string); dynamic;

C++

DYNAMIC void __fastcall SetEditText(int ACol, int ARow, const System::UnicodeString Value);

Properties

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

Description

Provides the interface for a method that updates the text associated with a cell.

SetEditText is called by the inplace editor so that the grid can store the new value for the current cell. The SetEditText method for TCustomGrid does nothing. Descendants of TCustomGrid override this method to update an internal representation of the cell's value or to generate an event, such as Vcl.Grids.TCustomDrawGrid.OnSetEditText.

See Also