Vcl.DBCtrls.TDBText.Field

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Field: TField read GetField;

C++

__property Data::Db::TField* Field = {read=GetField};

Properties

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

Description

Indicates the TField object for the database field the database text control represents.

Use the Field object to change the value of the data in the field programmatically.



DBText1.Field.AsString := 'Santa Cruz Wharf';



DBText1->Field->AsString = "Santa Cruz Wharf";



See Also