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

Description

Specifies the TField component the database image is linked to.

Read Field to get direct access to the contents and properties of the database field without going through the image control's window. Use Field to change the contents of the database field programmatically. Use the Picture property to set the value of the field and display it in the image control's window.



(DBEdit1.Field as TBlobField).Assign(Image1.Picture.Bitmap);



See Also