Vcl.DBCtrls.TDBComboBox.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 TDBComboBox

Description

Identifies the TField object whose current value the combo box represents.

Use the TField reference provided by the Field property when you want to change the value of the data in the field programmatically.



DBComboBox1.Field.AsString := 'Brazil';



DBComboBox1->Field->AsString = "Brazil";



See Also