ImageGlass.ImageBox.PerformZoomIn C# (CSharp) Method

PerformZoomIn() private method

Zooms into the image
private PerformZoomIn ( 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 PerformZoomIn(ImageBoxActionSources source, bool preservePosition)
        {
            PerformZoom(ImageBoxZoomActions.ZoomIn, source, preservePosition);
        }
ImageBox