Version

IGComparisonOperator Enumeration

Represents a means of comparison between two objects, mostly in regards to Filters.
Syntax
'Declaration
 
Public Enum IGComparisonOperator 
   Inherits System.Enum
public enum IGComparisonOperator : System.Enum 
__value public enum IGComparisonOperator : public System.Enum 
Members
MemberDescription
igBottomTests to see if the value is in the bottom 'X' values where 'X' is specified in the operand.
igBottomPercentileTests to see if the value is in the bottom 'X' percentile of values where 'X' is specified in the operand.
igContainsTests to see if the value contains the comparison value.
igDoesNotContainComplement of Contains.
igDoesNotEndWithComplement of EndsWith.
igDoesNotMatchComplement of Match.
igDoesNotStartWithComplement of StartsWith.
igEndsWithTests to see if the value ends with the comparison value.
igEqualsTests for two values being equal.
igGreaterThanTests for the value being greater than the comparison value.
igGreaterThanOrEqualToTests for the value being greater than or equal to the comparison value.
igInTests to see if the value is in the comma delimited list specified in the operand.
igLessThanTests for the value being less than the comparison value.
igLessThanOrEqualToTests for the value being less than or equal to the comparison value.
igLikeWill do a wild-card comparison of the value to the comparison value where the comparison value is the wild card string.
igMatchWill do a regular expression comparison of the value to the comparison value where the comparison value is the regular expression string.
igNotEqualsTests for two values being not equal.
igNotInTests to see if the value is not in the comma delimited list specified in the operand.
igNotLikeComplement of Like.
igStartsWithTests to see if the value starts with the comparison value.
igTopTests to see if the value is in the top 'X' values where 'X' is specified in the operand.
igTopPercentileTests to see if the value is in the top 'X' percentile of values where 'X' is specified in the operand.
Requirements

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

See Also