Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
  Expression(parameter1, parameter2, ...)
  Collection:
    Member Expression(parameter1, parameter2, ...)
    Member Expression(parameter1, parameter2, ...)

Basic Expressions

...

Range Expressions

Code Block
  MinuteRange(start, end)
  HourRange(start, end)
  DayOfWeekRange(start, end)
  DayOfMonthRange(start, end)
  MonthRange(start, end)
  DateRange(start, end)
Range Examples

An event that occurs during the 3 o'clock PM hour:

Code Block

  HourRange(start = 15, end = 15)

An event that occurs on Monday, Tuesday, and Wednesday:

Code Block

  DayOfWeekRange(start = Monday, end = Wednesday)

Day In Month Expression

Code Block

  DayInMonth(day of week, occurance)
Day In Month Examples

An event that occurs on the first Monday of the month:

Code Block

  DayInMonth(Monday, 1)

An event that occurs on the fourth Thursday of the month:

Code Block

  DayInMonth(Thursday, 4)

An event that occurs on the last Saturday of the month:

Code Block

  DayInMonth(Saturday, -1)

Expression Collections

The Substitution Expression