using System; using System.Collections.Generic; using System.Text; using System.Drawing; namespace Netron.Diagramming.Core { // ---------------------------------------------------------------------- /// /// Allows the user to incrementally adjust (increase) the magnification. /// // ---------------------------------------------------------------------- public class ZoomOutTool : ZoomToolBase { // ------------------------------------------------------------------ /// /// Constructor. /// /// string: The name of the tool. // ------------------------------------------------------------------ public ZoomOutTool(string toolName) : base(toolName) { // Decrease the magnification by a little to zoom out. base.myZoomFactor = 0.9F; } } }