IsSunday Function |
Unit
QESBPCSDateTime
Declaration
Function IsSunday(const DT: TDateTime): Boolean;
Parameters |
DT | Time to process. |
Category
Date/Time ComparisonImplementation
function IsSunday (const DT: TDateTime): Boolean; begin Result := DayOfWeek (DT) = 1; End; |
|