'Declaration Public Enum IGComparisonOperator Inherits System.Enum
public enum IGComparisonOperator : System.Enum
__value public enum IGComparisonOperator : public System.Enum
Member | Description |
---|---|
igBottom | Tests to see if the value is in the bottom 'X' values where 'X' is specified in the operand. |
igBottomPercentile | Tests to see if the value is in the bottom 'X' percentile of values where 'X' is specified in the operand. |
igContains | Tests to see if the value contains the comparison value. |
igDoesNotContain | Complement of Contains. |
igDoesNotEndWith | Complement of EndsWith. |
igDoesNotMatch | Complement of Match. |
igDoesNotStartWith | Complement of StartsWith. |
igEndsWith | Tests to see if the value ends with the comparison value. |
igEquals | Tests for two values being equal. |
igGreaterThan | Tests for the value being greater than the comparison value. |
igGreaterThanOrEqualTo | Tests for the value being greater than or equal to the comparison value. |
igIn | Tests to see if the value is in the comma delimited list specified in the operand. |
igLessThan | Tests for the value being less than the comparison value. |
igLessThanOrEqualTo | Tests for the value being less than or equal to the comparison value. |
igLike | Will do a wild-card comparison of the value to the comparison value where the comparison value is the wild card string. |
igMatch | Will do a regular expression comparison of the value to the comparison value where the comparison value is the regular expression string. |
igNotEquals | Tests for two values being not equal. |
igNotIn | Tests to see if the value is not in the comma delimited list specified in the operand. |
igNotLike | Complement of Like. |
igStartsWith | Tests to see if the value starts with the comparison value. |
igTop | Tests to see if the value is in the top 'X' values where 'X' is specified in the operand. |
igTopPercentile | Tests to see if the value is in the top 'X' percentile of values where 'X' is specified in the operand. |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2