Infragistics(R) NetAdvantage(R) WPF
OneConstraintDataValidationOperator Enumeration
See Also  E-mail your feedback on this topic.
Infragistics.Documents.Excel Namespace : OneConstraintDataValidationOperator Enumeration

Represents the various operators which can be used when validating the cell value against a constraint.

Syntax

Visual Basic (Declaration) 
Public Enum OneConstraintDataValidationOperator 
   Inherits System.Enum
C# 
public enum OneConstraintDataValidationOperator : System.Enum 

Members

MemberDescription
EqualTo Only allows the cell value if it or its text length, depending on the validation criteria, is equal to the constraint applied to the validation rule.
GreaterThan Only allows the cell value if it or its text length, depending on the validation criteria, is greater than the constraint applied to the validation rule.
GreaterThanOrEqualTo Only allows the cell value if it or its text length, depending on the validation criteria, is greater than or equal to the constraint applied to the validation rule.
LessThan Only allows the cell value if it or its text length, depending on the validation criteria, is less than the constraint applied to the validation rule.
LessThanOrEqualTo Only allows the cell value if it or its text length, depending on the validation criteria, is less than or equal to the constraint applied to the validation rule.
NotEqualTo Only allows the cell value if it or its text length, depending on the validation criteria, is not equal to the constraint applied to the validation rule.

See Also