This class provides an enum of values on, off, and ignore.
Public Enum OnOffIgnoreToggle ignore = 3 off = 2 on = 1 End Enum
public enum OnOffIgnoreToggle { ignore = 3, off = 2, on = 1 }