Vcl.Grids.TCustomDrawGrid.GetEditMask

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

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 TCustomDrawGrid

Description

Generates an OnGetEditMask event.

The inplace editor calls GetEditMask to obtain any input mask associated with the cell specified by the ACol and ARow parameters.

GetEditMask returns the Value parameter set by the OnGetEditMask event handler. If there is no OnGetEditMask event handler, GetEditMask returns an empty string, indicating that there is no edit mask.

See Also