2004-04-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / LinkState.cs
1 //
2 // System.Windows.Forms.LinkState.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 // (C) 2002 Ximian, Inc.  http://www.ximian.com
7 //
8
9 using System;
10
11 namespace System.Windows.Forms {
12
13         /// <summary>
14         /// </summary>
15         public enum LinkState {
16                 Active = 2,
17                 Hover = 1,
18                 Normal = 0,
19                 Visited = 4
20         }
21 }