Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.3/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/IBundle.cs

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

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

File size: 1.1 KB
Line 
1
2namespace Netron.Diagramming.Core {
3  /// <summary>
4  /// Interface of a <see cref="Bundle"/>
5  /// </summary>
6  public interface IBundle : IDiagramEntity {
7    // ------------------------------------------------------------------
8    /// <summary>
9    /// Gets the entities in the <see cref="Bundle"/>
10    /// </summary>
11    /// <value>The entities.</value>
12    // ------------------------------------------------------------------
13    CollectionBase<IDiagramEntity> Entities { get; }
14
15    // ------------------------------------------------------------------
16    /// <summary>
17    /// Sets the 'IsSelected' property to false for all entities in the
18    /// bundle.
19    /// </summary>
20    // ------------------------------------------------------------------
21    void DeSelectAll();
22
23    // ------------------------------------------------------------------
24    /// <summary>
25    /// Sets the 'Hovered' property for all entities in the bundle to
26    /// the value specified.
27    /// </summary>
28    // ------------------------------------------------------------------
29    void SetHovered(bool isHovered);
30  }
31}
Note: See TracBrowser for help on using the repository browser.