TriState Enumeration
Represents a value that can be either true, false or automatically determined.
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
Public Enumeration TriState
Dim instance As TriState
public enum class TriState
Field Value
This enumeration is equivalent to a
Boolean value, with an additional option that
indicates the value should be automatically determined based on some criteria.
Auto | 0 |
The value should be automatically determined to be either or
.
|
True | 1 |
Represents a value.
|
False | 2 |
Represents a value.
|