Specifies the browsable state of a property or method from within an editor.
[Visual Basic] <Serializable> Public Enum EditorBrowsableState [C#] [Serializable] public enum EditorBrowsableState [C++] [Serializable] __value public enum EditorBrowsableState [JScript] public Serializable enum EditorBrowsableState
This class is used by a visual designer to determine what is visible to the user. For example, the IntelliSense engine in Visual Studio .NET never shows those methods or property that are marked as Never.
| Member name | Description |
|---|---|
| Advanced
Supported by the .NET Compact Framework. |
The property or method is a feature that only advanced users should see. An editor can either show or hide such properties. |
| Always
Supported by the .NET Compact Framework. |
The property or method is always browsable from within an editor. |
| Never
Supported by the .NET Compact Framework. |
The property or method is never browsable from within an editor. |
For an example of using the EditorBrowsableState enumerator, see the sample code in EditorBrowsableAttribute class.
Namespace: System.ComponentModel
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework - Windows CE .NET
Assembly: System (in System.dll)