Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Tools/ZoomInTool.cs

    r2768 r4068  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Text;
    4 using System.Drawing;
    51
    6 namespace Netron.Diagramming.Core
    7 {
    8     // ----------------------------------------------------------------------
     2namespace Netron.Diagramming.Core {
     3  // ----------------------------------------------------------------------
     4  /// <summary>
     5  /// Allows the user to incrementally adjust (increase) the magnification.
     6  /// </summary>
     7  // ----------------------------------------------------------------------
     8  public class ZoomInTool : ZoomToolBase {
     9    // ------------------------------------------------------------------
    910    /// <summary>
    10     /// Allows the user to incrementally adjust (increase) the magnification.
     11    /// Constructor.
    1112    /// </summary>
    12     // ----------------------------------------------------------------------
    13     public class ZoomInTool : ZoomToolBase
    14     {
    15         // ------------------------------------------------------------------
    16         /// <summary>
    17         /// Constructor.
    18         /// </summary>
    19         /// <param name="toolName">string: The  name of the tool.</param>
    20         // ------------------------------------------------------------------
    21         public ZoomInTool(string toolName)
    22             : base(toolName)
    23         {
    24             // Increase the magnification by a little to zoom in.
    25             base.myZoomFactor = 1.1F;
    26         }
     13    /// <param name="toolName">string: The  name of the tool.</param>
     14    // ------------------------------------------------------------------
     15    public ZoomInTool(string toolName)
     16      : base(toolName) {
     17      // Increase the magnification by a little to zoom in.
     18      base.myZoomFactor = 1.1F;
    2719    }
     20  }
    2821}
Note: See TracChangeset for help on using the changeset viewer.