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

Description

Identifies the TField object the listbox is linked to.

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



DBListBox1.Field.AsString := 'Lithuania';



DBListBox1->Field->AsString = "Lithuania";



See Also