Vcl.Grids.TCustomGrid.GetEditMask

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

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

Description

Provides the interface for a method that returns an input mask for the specified cell.

The inplace editor calls GetEditMask to obtain any input mask associated with the cell specified by the ACol and ARow parameters. GetEditMask returns an empty string, indicating that the cell has no input mask. Descendants of TCustomGrid override this method to provide an input mask or to generate an event, such as Vcl.Grids.TCustomDrawGrid.OnGetEditMask.

See Also