[Overview][Constants][Procedures and functions][Index] |
Check whether a given year/day of year combination is a valid date.
Source position: dateutil.inc line 101
function IsValidDateDay( |
const AYear: Word; |
const ADayOfYear: Word |
):Boolean; |
AYear |
|
Year |
ADayOfYear |
|
Day in the year |
True if the given combination is a valid date, False otherwise.
IsValidDateDay returns True if AYear and ADayOfYear form a valid date indication, or False otherwise.
AYear must be in the range 1..9999 to be valid.
The ADayOfYear value is checked to see whether it falls within the valid range of dates for AYear.
|
Check whether a set of values is a valid date indication. |
|
|
Check whether a set of values is a valid time indication. |
|
|
Check whether a set of values is a valid date and time indication. |
|
|
Check whether a given year/week/day of the week combination is a valid day. |
|
|
Check whether a given year/month/week/day of the week combination is a valid day |
Program Example9; { This program demonstrates the IsValidDateDay function } Uses SysUtils,DateUtils; Var Y : Word; Begin For Y:=1996 to 2004 do if IsValidDateDay(Y,366) then Writeln(Y,' is a leap year'); End.