Click or drag to resize
TextValidatorNumbersOnly Constructor (Boolean, NullableDouble, NullableDouble)
Create the number validator.

Namespace:  GeonBit.UI.Entities.TextValidators
Assembly:  GeonBit.UI (in GeonBit.UI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public TextValidatorNumbersOnly(
	bool allowDecimal,
	Nullable<double> min = null,
	Nullable<double> max = null
)

Parameters

allowDecimal
Type: SystemBoolean
If true, will allow decimal point in input.
min (Optional)
Type: SystemNullableDouble
If provided, will force min value.
max (Optional)
Type: SystemNullableDouble
If provided, will force max value.
See Also