Adf.Web.UI.SignedIntegerTextBoxValidator.SignedIntegerTextBoxValidator C# (CSharp) Method

SignedIntegerTextBoxValidator() public method

Initializes an instance of the Adf.Web.UI.SignedIntegerTextBoxValidator class. Sets its operator to System.Web.UI.WebControls.ValidationCompareOperator.DataTypeCheck and its type to System.Web.UI.WebControls.ValidationDataType.Integer.
public SignedIntegerTextBoxValidator ( ) : System.ComponentModel
return System.ComponentModel
        public SignedIntegerTextBoxValidator()
            : base()
        {
            Operator = ValidationCompareOperator.DataTypeCheck;
            Type = ValidationDataType.Integer;
        }
SignedIntegerTextBoxValidator