Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EditorBrowsableState.cs « System.ComponentModel « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eab0d651bb8cff7b7d7a7cfce8687f4b0aa0644e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// ProjectData.cs
//
// Author:
//   Martin Adoue (martin@cwanet.com)
//
// (C) 2002 Martin Adoue
//

using System;

namespace System.ComponentModel
{

	/// <summary>
	/// Specifies the browsable state of a property or method from within an editor.
	/// </summary>
	public enum EditorBrowsableState 
	{
		/// <summary>
		/// The property or method is always browsable from within an editor.
		/// </summary>
		Always = 0,
		/// <summary>
		/// The property or method is never browsable from within an editor.
		/// </summary>
		Never = 1,
		/// <summary>
		/// The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.
		/// </summary>
		Advanced = 2
	}

}