ImageEn, unit iexMetaHelpers

TIEMetaListView.GroupView

TIEMetaListView.GroupView


Declaration

property GroupView: Boolean;


Description

Whether a group heading is displayed to separate meta-data types.

The titles for headings are specified by:
 TitleDicom
 TitleExif
 TitleGeneral
 TitleIptc
 TitlePdf
 TitleXmp

Note:
 Delphi 2009 or newer is required for GroupView support
 Users can double-click group headers to expand or collapse them

Default: True


Example

// Show only general image info, and also EXIF if the file contains it
IEMetaListView1.GroupView := True;
IEMetaListView1.AutoShowTypes := [iemGeneral, iemEXIF];
IEMetaListView1.Update();




// Show only document properties for the current PDF
ImageEnView1.PdfViewer.Enabled := True;
ImageEnView1.IO.LoadFromFile( 'D:\Testing_Multimedia\PDF\TEST Adobe.pdf' );
IEMetaListView1.GroupView := False;
IEMetaListView1.AutoShowTypes   := [];
IEMetaListView1.AlwaysShowTypes := [ iemPDF ];
IEMetaListView1.AttachedImageEn := ImageEnView1;


See Also

 CollapseAllGroups
 ExpandAllGroups