Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/ILayout.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

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

File size: 636 bytes
Line 
1using System.Drawing;
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
10
11    #endregion
12
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  }
26}
Note: See TracBrowser for help on using the repository browser.