maxDate Function

Retrieves the maximum value allowed for a variable of type date. Any date will be less or equal to this date.


date maxDate()

The maximum value allowed for a variable of type date.

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

Community Additions

ADD
Show: