namespace Netron.Diagramming.Core { // ---------------------------------------------------------------------- /// /// Allows the user to incrementally adjust (increase) the magnification. /// // ---------------------------------------------------------------------- public class ZoomInTool : ZoomToolBase { // ------------------------------------------------------------------ /// /// Constructor. /// /// string: The name of the tool. // ------------------------------------------------------------------ public ZoomInTool(string toolName) : base(toolName) { // Increase the magnification by a little to zoom in. base.myZoomFactor = 1.1F; } } }