Vcl.DBCtrls.TDBImage.Picture

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Picture: TPicture read FPicture write SetPicture;

C++

__property Vcl::Graphics::TPicture* Picture = {read=FPicture, write=SetPicture};

Properties

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

Description

Represents the image that appears on the database image control.

Read Picture to obtain the TPicture object that represents the value of the field. Set Picture to programmatically change the value of the graphic field. The property value is a TPicture object which can contain an icon, metafile, bitmap, or other graphic object.



Image1.Picture.Assign(DBImage1.Picture);



See Also