ImageEn, unit iexMetaHelpers |
|
TIEMetaListView.AttachedImageEn
Declaration
property AttachedImageEn: TIEView;
Description
Specify the
TImageEnView which TIEMetaListView will show properties of.
When the control is attached to a TImageEnView the content will automatically update when you load a new image.
Note:
◼If you update the
ImageEnView Params with your code, use
Update to update the content
◼You can also manually
assign the params from a
TImageEnView,
TImageEnMView,
TIEBitmap, image file or stream
IEMetaListView1.AttachedImageEnView := ImageEnView1;
// Show only document properties for the current PDF
ImageEnView1.PdfViewer.Enabled := True;
ImageEnView1.IO.LoadFromFile( 'D:\Abobe Document.pdf' );
IEMetaListView1.GroupView := False;
IEMetaListView1.AutoShowTypes := [];
IEMetaListView1.AlwaysShowTypes := [ iemPDF ];
IEMetaListView1.AttachedImageEn := ImageEnView1;