Vcl.Grids.TCustomGrid.GetEditText

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetEditText(ACol, ARow: Longint): string; dynamic;

C++

DYNAMIC System::UnicodeString __fastcall GetEditText(int ACol, int ARow);

Properties

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

Description

Returns the value of the indicated cell formatted for editing.

The inplace editor calls GetEditText to obtain the text for the indicated cell. GetEditText returns an empty string. Descendants of TCustomGrid override the GetEditText method to return a string that represents the contents of the cell indicated by the ACol and ARow parameters.

See Also