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/IPaintable.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: 497 bytes
Line 
1using System.Drawing;
2namespace Netron.Diagramming.Core {
3  /// <summary>
4  /// The interface of something that can be painted on the canvas.
5  /// </summary>
6  public interface IPaintable {
7    /// <summary>
8    /// The bounds of the paintable entity
9    /// </summary>
10    Rectangle Rectangle {
11      get;
12    }
13
14    /// <summary>
15    /// Paints the entity using the given graphics object
16    /// </summary>
17    /// <param name="g"></param>
18    void Paint(Graphics g);
19  }
20}
Note: See TracBrowser for help on using the repository browser.