ImageGlass.ImageBox.PerformZoomOut C# (CSharp) Method

PerformZoomOut() private method

Zooms out of the image
private PerformZoomOut ( ImageBoxActionSources source, bool preservePosition ) : void
source ImageBoxActionSources The source that initiated the action.
preservePosition bool true if the current scrolling position should be preserved relative to the new zoom level, false to reset.
return void
        private void PerformZoomOut(ImageBoxActionSources source, bool preservePosition)
        {
            PerformZoom(ImageBoxZoomActions.ZoomOut, source, preservePosition);
        }
ImageBox