IsValidDate
Validates a date structure.
Syntax
-
IsValidDate(d)
-
d
is aDate
structure
-
Description
If d
is a Date
structure, then IsValidDate(d)
returns true
if d
represents a valid date and false
otherwise.
Examples
IsValidDate(date(2010, 06, 02))
true
IsValidDate(date(2010, 16, 02))
false