IsWeekday Function |
Unit
QESBPCSDateTime
Declaration
Function IsWeekday(const DT: TDateTime): Boolean;
Parameters |
DT | Date to process. |
Category
Date/Time ComparisonImplementation
function IsWeekday (const DT: TDateTime): Boolean; begin Result := DayOfWeek (DT) in [2..6]; End; |
|