Vcl.Grids.TInplaceEdit.EditCanModify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function EditCanModify: Boolean; override;

C++

virtual bool __fastcall EditCanModify();

Properties

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

Description

Determines whether the user can edit the Text.

EditCanModify is called automatically when the user tries to edit the value of Text. EditCanModify calls the CanEditModify method of the grid to determine whether the current cell of the grid should be edited. When EditCanModify returns true, the user is permitted to edit the text. When EditCanModify returns false, the user is prevented from editing the text.

See Also