Declaration
property Modified: Boolean;
Description
Returns true if the image list has changed since loading. This includes appending, insertion and deletion of frames, and modification of images within the frames, e.g. by rotation. It does 
not include changes to 
Params.
Note:
◼Modified is reset to false whenever the TIEMultiBitmap is loaded, i.e. using 
LoadFromFile or via 
TImageEnMIO
◼Saving a TIEMultiBitmap does not reset 
Modified
// Check the status of the animated GIF in our TImageEnMView on FormClose
If ImageEnMView1.IEMBitmap.Modified then
  if MessageDlg( 'Save changes to your image?', mtConfirmation, [mbYes,mbNo], 0) = mrYes then
    ImageEnMView1.MIO.SaveToFile( ActiveFilename );
See Also
◼OnChanged