Adf.Web.UI.SignedIntegerTextBoxValidator.SignedIntegerTextBoxValidator C# (CSharp) 메소드

SignedIntegerTextBoxValidator() 공개 메소드

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
리턴 System.ComponentModel
        public SignedIntegerTextBoxValidator()
            : base()
        {
            Operator = ValidationCompareOperator.DataTypeCheck;
            Type = ValidationDataType.Integer;
        }
SignedIntegerTextBoxValidator