2004-05-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / TickStyle.cs
1 //
2 // System.Windows.Forms.TickStyle.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 //       Gianandrea Terzi (gianandrea.terzi@lario.com)
7 //
8 // (C) 2002 Ximian, Inc.  http://www.ximian.com
9 //
10
11 using System;
12
13 namespace System.Windows.Forms {
14
15         /// <summary>
16         /// </summary>
17         public enum TickStyle {
18                 Both = 3,
19                 BottomRight = 2,
20                 None =0,
21                 TopLeft = 1,
22         }
23 }