Icon IsDay

Unit: WebCore

Available In: Client and Server Applications

function IsDay(Month: Integer; Value: Integer; LeapYear: Boolean=False): Boolean

The IsDay function returns True if the input parameter is a valid day number for the specified month and leap year parameters.

Examples

X := IsDay(3,31);  // X is True
Image