DecimalRange Enumeration

Represents the possible ranges for the DecimalTextBox control.

Definition

Namespace: KGySoft.WinForms.Controls
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
public enum DecimalRange

Members

Any0 Any value is accepted.
Positive1 Positive values are accepted, excluding zero value.
Negative2 Negative values are accepted, excluding zero value.
PositiveNull3 Positive values are accepted, including zero value.
NegativeNull4 Negative values are accepted, including zero value.
MinMax5 Accepted values are controlled by RangeMinValue and RangeMaxValue properties.

See Also