Data.DB.TField.CanModify

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TField

Delphi

property CanModify: Boolean read GetCanModify;

C++

__property bool CanModify = {read=GetCanModify, nodefault};

Description

Specifies whether a field can be modified.

Check CanModify to determine if a field's data can be edited. CanModify is true only if the ReadOnly property is false, and the dataset for this field component allows write access to the corresponding database field.

See Also