Vcl.DBCtrls.TFieldDataLink.Editing

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Editing: Boolean read FEditing;

C++

__property bool Editing = {read=FEditing, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TFieldDataLink

Description

Indicates whether the dataset that contains the associated field is in edit mode.

Use Editing to determine whether the value of the field associated with this TDataLink can currently be edited. If Editing is false, calling the Edit method may drive the dataset into edit mode. The Edit method may not be successful, however, if the field cannot be edited. For example, if the CanModify property is false, Editing will always be false.

See Also