Declaration
procedure Assign(Source: TIEImagingAnnot);
Description
Copy annotations from another
TIEImagingAnnot object.
// Copy annotations from a JPEG file to current image
iebmp := TIEBitmap.Create();
iebmp.ParamsEnabled := true;
iebmp.LoadFromFile( 'C:\Image.jpg' );
ImageEnView1.IO.Params.ImagingAnnot.Assign( iebmp.Params.ImagingAnnot );
iebmp.Free;