maxDate Function

Retrieves the maximum value allowed for a date value.


date maxDate()

The maximum value allowed for a date value.

Any date will be less or equal to the returned date.

static void maxDateExample(Args _arg)
{
    date maximumDate;
    ;
    maximumDate = maxDate();
    print maximumDate;
    pause;
}

Community Additions

ADD
Show: