EditorBrowsableState Enumeration
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
Remarks
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.
Members
| 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. |
Example
For an example of using the EditorBrowsableState enumerator, see the sample code in EditorBrowsableAttribute class.
Requirements
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
Assembly: System (in System.dll)