mscorlib(4.0.0.0) API with additions
EditorBrowsableState.cs
1 namespace System.ComponentModel
2 {
4  [global::__DynamicallyInvokable]
5  public enum EditorBrowsableState
6  {
8  [global::__DynamicallyInvokable]
9  Always,
11  [global::__DynamicallyInvokable]
12  Never,
14  [global::__DynamicallyInvokable]
15  Advanced
16  }
17 }
The property or method is a feature that only advanced users should see. An editor can either show or...
EditorBrowsableState
Specifies the browsable state of a property or method from within an editor.
The property or method is never browsable from within an editor.
The property or method is always browsable from within an editor.