// Display the filename and details for each image ImageEnMView1.DefaultTopText := iedtFilename; ImageEnMView1.DefaultInfoText := iedtImageDimensions; ImageEnMView1.DefaultBottomText := iedtFileEditDateAndSize;
// Replace existing bottom text and display the file date and size for I := 0 to ImageEnMView1.ImageCount - 1 do ImageEnMView1.ImageBottomText[ i ] := '' ; ImageEnMView1.DefaultImageBottomText := iedtFileEditDateAndSize;
// Change the layer display text for TImageEnLayerMView IELayerMView1.DefaultTopText := iedtLayerName; IELayerMView1.DefaultInfoText := iedtLayerKind; IELayerMView1.DefaultBottomText := iedtLayerDescription; IELayerMView1.ReadLayers();
// Fill with images from a folder and apply text values ImageEnMView1.FillFromDirectory( 'C:\Images\', iefAllImages, '', True, iedtNone, iedtNone, iedtNone ); ImageEnMView1.DefaultTopText := iedtFilename; ImageEnMView1.DefaultInfoText := iedtNone; ImageEnMView1.DefaultBottomText := iedtImageDimAndSize;