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: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
[SerializableAttribute]
public enum VGEditorBrowsableState
Visual Basic
<SerializableAttribute>
Public Enumeration VGEditorBrowsableState

Members

Member nameValueDescription
Always0 the item is always browsable even if the EditorBrowsableAttribute is set to false for this item.
OnlyIfBrowsable1 the item is browsable only if the EditorBrowsableAttribute is set to true for this item.
Never2 the item is never browsable even if the EditorBrowsableAttribute is set to true for this item.
OnlyAtDesignTime3 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