Version

IGComparisonOperatorFull Enumeration

Represents a means of comparison between two objects, mostly in regards to Filters.
Syntax
'Declaration
 
Public Enum IGComparisonOperatorFull 
   Inherits System.Enum
public enum IGComparisonOperatorFull : System.Enum 
__value public enum IGComparisonOperatorFull : public System.Enum 
Members
MemberDescription
igcContainsEvaluates if a string contains a compared value. With string values, a case sensitivity flag may effect the result.
igcDateTimeAfterEvaluates if a DateTime object comes after a given input.
igcDateTimeAprilEvaluates that a DateTime is in April.
igcDateTimeAugustEvaluates that a DateTime is in August.
igcDateTimeBeforeEvaluates if a DateTime object comes prior to a given input.
igcDateTimeDecemberEvaluates that a DateTime is in December.
igcDateTimeFebruaryEvaluates that a DateTime is in February.
igcDateTimeJanuaryEvaluates that a DateTime is in January.
igcDateTimeJulyEvaluates that a DateTime is in July.
igcDateTimeJuneEvaluates that a DateTime is in June.
igcDateTimeLastMonthEvaluates if a DateTime value is in last month.
igcDateTimeLastQuarterEvaluates if a DateTime value is in the last quarter.
igcDateTimeLastWeekEvaluates if a DateTime value is in last week.
igcDateTimeLastYearEvaluates if a DateTime value is in last year.
igcDateTimeMarchEvaluates that a DateTime is in March.
igcDateTimeMayEvaluates that a DateTime is in May.
igcDateTimeNextMonthEvaluates if a DateTime value is in next month.
igcDateTimeNextQuarterEvaluates if a DateTime value is in the next quarter.
igcDateTimeNextWeekEvaluates if a DateTime value is in next week.
igcDateTimeNextYearEvaluates if a DateTime value is in next year.
igcDateTimeNovemberEvaluates that a DateTime is in November.
igcDateTimeOctoberEvaluates that a DateTime is in October.
igcDateTimeQuarter1Evaluates that a DateTime is in the first quarter.
igcDateTimeQuarter2Evaluates that a DateTime is in the second quarter.
igcDateTimeQuarter3Evaluates that a DateTime is in the third quarter.
igcDateTimeQuarter4Evaluates that a DateTime is in the forth quarter.
igcDateTimeSeptemberEvaluates that a DateTime is in Sepember.
igcDateTimeThisMonthEvaluates if a DateTime value is in this month.
igcDateTimeThisQuarterEvaluates if a DateTime value is in this quarter.
igcDateTimeThisWeekEvaluates if a DateTime value is in this week.
igcDateTimeThisYearEvaluates if a DateTime value is in this year.
igcDateTimeTodayEvaluates if a DateTime value is today.
igcDateTimeTomorrowEvaluates if a DateTime value is tomorrow.
igcDateTimeYearToDateEvaluates if a DateTime value is in the current year up to today's date.
igcDateTimeYesterdayEvaluates if a DateTime value is yesterday.
igcDoesNotContainEvaluates if a string does not contain a compared value. With string values, a case sensitivity flag may effect the result.
igcDoesNotEndWithEvaluates if a string does not end with a compared value. With string values, a case sensitivity flag may effect the result.
igcDoesNotStartWithEvaluates if a string does not begin with a compared value. With string values, a case sensitivity flag may effect the result.
igcEndsWithEvaluates if a string ends with a compared value. With string values, a case sensitivity flag may effect the result.
igcEqualsAn equality compare is executed. With string values, a case sensitivity flag may effect the result.
igcGreaterThanA GreaterThan compare is executed. With string values, a case sensitivity flag may effect the result.
igcGreaterThanOrEqualA greater than or equal compare is executed. With string values, a case sensitivity flag may effect the result.
igcLessThanA less than compare is executed. With string values, a case sensitivity flag may effect the result.
igcLessThanOrEqualA less than or equal compare is executed. With string values, a case sensitivity flag may effect the result.
igcNotEqualsAn non equality compare is executed. With string values, a casesensitivity flag may effect the result.
igcStartsWithEvaluates if a string begins with a compared value. With string values, a case sensitivity flag may effect the result.
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