2004-05-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / DrawMode.cs
1 //
2 // System.Windows.Forms.DrawMode.cs
3 //
4 // Author:
5 //   Jaak Simm (jaaksimm@firm.ee)
6 //   Dennis Hayes (dennish@raytek.com)
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11
12 namespace System.Windows.Forms {
13
14
15         /// <summary>
16   /// Specifies how the elements of a control are drawn.
17         /// </summary>
18
19         public enum DrawMode {
20
21                 //Values were verified with enumcheck.
22                 Normal = 0,
23                 OwnerDrawFixed = 1,
24                 OwnerDrawVariable = 2,
25         }
26 }