2003-04-11 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System / System.ComponentModel / EditorBrowsableState.cs
1 //\r
2 // ProjectData.cs\r
3 //\r
4 // Author:\r
5 //   Martin Adoue (martin@cwanet.com)\r
6 //\r
7 // (C) 2002 Martin Adoue\r
8 //\r
9 \r
10 using System;\r
11 \r
12 namespace System.ComponentModel\r
13 {\r
14 \r
15         /// <summary>\r
16         /// Specifies the browsable state of a property or method from within an editor.\r
17         /// </summary>\r
18         public enum EditorBrowsableState \r
19         {\r
20                 /// <summary>\r
21                 /// The property or method is always browsable from within an editor.\r
22                 /// </summary>\r
23                 Always = 0,\r
24                 /// <summary>\r
25                 /// The property or method is never browsable from within an editor.\r
26                 /// </summary>\r
27                 Never = 1,\r
28                 /// <summary>\r
29                 /// The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.\r
30                 /// </summary>\r
31                 Advanced = 2\r
32         }\r
33 \r
34 }\r