Enumeration for various states of a command. This enumeration can be treated as a bit field; that is, a set of flags. Bit fields can be combined using a bitwise OR operation.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
| Member Name | Description | Value |
|---|---|---|
| Enabled | Command is enabled. | 1 |
| Disabled | Command is disabled. | 2 |
| Hidden | Command is hidden. | 4 |
| Checked | Command is in checked state. | 8 |
| Unchecked | Command is in unchecked state. | 16 |
Namespace: Aveva.ApplicationFramework.Presentation
Assembly: Aveva.ApplicationFramework.Presentation (in Aveva.ApplicationFramework.Presentation.dll)
Aveva.ApplicationFramework.Presentation Namespace