first checkin
[mono.git] / mcs / class / System.Drawing / System.Drawing / impl / ItfBrush.cs
1 //
2 // System.Drawing.Brush.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Alexandre Pigolkine (pigolkine@gmx.de)
7 //
8 // (C) Ximian, Inc.  http://www.ximian.com
9 //
10
11 using System;
12
13 namespace System.Drawing {
14
15         internal interface IBrush : IDisposable  {
16
17                 object Clone ();
18
19                 // this property helps to draw text using brush color
20                 Color TextColor 
21                 {
22                         get ;
23                 }
24         }
25 }
26