Click or drag to resize

VGEditorBrowsableState Enumeration

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: 2019.1.831.19 (2019.1.0831.19)
Syntax
[SerializableAttribute]
public enum 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