Specifies the browsable state of a class, assembly, property or event from within a Visual Guard editor.

Namespace:  Novalys.VisualGuard.Security
Assembly:  Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 3.2.912.1 (3.2.912.01)

Syntax

C#
[SerializableAttribute]
public enum VGEditorBrowsableState
Visual Basic (Declaration)
<SerializableAttribute> _
Public Enumeration VGEditorBrowsableState

Members

Member nameDescription
Always
the item is always browsable even if the EditorBrowsableAttribute is set to false for this item.
OnlyIfBrowsable
the item is browsable only if the EditorBrowsableAttribute is set to true for this item.
Never
the item is never browsable even if the EditorBrowsableAttribute is set to true for this item.
OnlyAtDesignTime
the item is browsable only at design time.

Remarks

You can defines the browsable state of class, assembly, property or event by using the VGEditorBrowsableAttribute class.

See Also