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/IComplexShape.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: 402 bytes
Line 
1
2namespace Netron.Diagramming.Core {
3  /// <summary>
4  /// A complex shape is just an IShape with <see cref="IShapeMaterial"/> children
5  /// </summary>
6  public interface IComplexShape : IShape {
7    /// <summary>
8    /// Gets or sets the children.
9    /// </summary>
10    /// <value>The children.</value>
11    CollectionBase<IShapeMaterial> Children {
12      get;
13      set;
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.