GreaterThanOrEquals method (date)

Returns a value indicating whether this date is greater than or equal to a specified date.

Syntax

date1.GreaterThanOrEquals(date2)

Returns true if date1 is greater than or equal to date2; otherwise, false.

Example

{% Var value1 = #2017-05-29# %}
{% Var value2 = #2013-02-13# %}

Answers: {{ value1.GreaterThanOrEquals(value2) }},
         {{ value2.GreaterThanOrEquals(value1) }},
         {{ value1.GreaterThanOrEquals(#2017-05-29#) }}

The above example would output: Answers: True, False, True