[Overview][Constants][Procedures and functions][Index] |
Checks whether a time value is in a given range
Source position: dateutil.inc line 381
function TimeInRange( |
ATime: TTime; |
AStartTime: TTime; |
AEndTime: TTime; |
AInclusive: Boolean = True |
):Boolean; |
TimeInRange checks whether the value ATime lies between AStartTime and AEndTime, and returns True if it is. When AInclusive is True (the default), then the limits are included. When AInclusive is False, the limits are excluded. Only the time part of the 3 parameters is considered.
The AStartTime value must be before AEndTime, but no check is performed.
|
Checks whether a date value is in a given rang |
|
|
Checks whether a date/time value is in a given range |