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/Core/Interfaces/ILayout.cs

    r2768 r4068  
    1 using System;
    21using System.Drawing;
    3 using System.Windows.Forms;
    4 namespace Netron.Diagramming.Core
    5 {
    6   /// <summary>
    7   /// This interface describes the elements of a layout module.
    8   /// The single call to the inherited Run() method will organize the diagram in
    9   /// a certain way.
    10   /// </summary>
    11   public interface ILayout : IAction
    12   {
    13     #region Events
    14    
    15     #endregion
     2namespace Netron.Diagramming.Core {
     3  /// <summary>
     4  /// This interface describes the elements of a layout module.
     5  /// The single call to the inherited Run() method will organize the diagram in
     6  /// a certain way.
     7  /// </summary>
     8  public interface ILayout : IAction {
     9    #region Events
    1610
    17     #region Properties
    18         /// <summary>
    19         /// Gets or sets the bounds of the layout algorithm.
    20         /// </summary>
    21         /// <value>The bounds.</value>
    22         Rectangle Bounds { get;set;}
    23         PointF Center { get;set;}
    24     #endregion
     11    #endregion
    2512
    26     #region Methods
    27    
    28     #endregion
    29   }
     13    #region Properties
     14    /// <summary>
     15    /// Gets or sets the bounds of the layout algorithm.
     16    /// </summary>
     17    /// <value>The bounds.</value>
     18    Rectangle Bounds { get; set; }
     19    PointF Center { get; set; }
     20    #endregion
     21
     22    #region Methods
     23
     24    #endregion
     25  }
    3026}
Note: See TracChangeset for help on using the changeset viewer.