Vcl.DBGrids.TCustomDBGrid.CanEditShow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  CanEditShow: Boolean; override;

C++

virtual bool __fastcall CanEditShow();

Properties

Type Visibility Source Unit Parent
function protected
Vcl.DbGrids.pas
Vcl.DBGrids.hpp
Vcl.DBGrids TCustomDBGrid

Description

Indicates whether the inplace edit control can be created to allow editing.

TCustomDBGrid overrides the inherited method to prevent the inplace edit control from coming up while the layout of the grid is being recomputed.

Grid controls call CanEditShow internally before creating the editor for a cell. CanEditShow is called after the grid has determined that the field can be edited by calling CanEditModify.

See Also