Declaration
property OnZoomOut: TIEZoomEvent;
Description
Occurs whenever the user zooms out of the current image (reduces its display size).
You can programatically customize the zoom value by changing the
NewZoom parameter.
Example
// Max zoom-out to 200%
Procedure Tform1.ImageEnView1ZoomOut(Sender: TObject; var NewZoom: Double);
Begin
if NewZoom > 200 then
NewZoom := 200;
End;