Description
This class provides an enum of values on, off, and ignore.
Visual Basic
Public Enum OnOffIgnoreToggle ignore = 3 off = 2 on = 1 End Enum
C#
public enum OnOffIgnoreToggle { ignore = 3, off = 2, on = 1 }
Members
| Members | Description |
|---|---|
| ignore = 3 | ignore |
| off = 2 | off |
| on = 1 | on |