TImageEnMIO.AttachedIEMBitmap
Declaration
property AttachedIEMBitmap: TIECustomMultiBitmap
Description
Attach a
TIEMultiBitmap object to the TImageEnMIO. Will be nil if the TImageEnMIO is attached to a
TImageEnMView.
Example
// Print all images in a TIFF file
mbmp := TIEMultiBitmap.Create();
mio := TImageEnMIO.Create( nil );
mio.AttachedIEMBitmap := mbmp;
mio.DoPrintPreviewDialog( '' );
...
mio.Free();
mbmp.Free();
See Also
◼AttachedMView