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 @ 8365

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

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

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