| ISODayOfWeek Function | 
Unit
QESBPCSDateTime
Declaration
Function ISODayOfWeek(const DT: TDateTime): Byte;
| Parameters | 
| DT | Date/Time to be processed. | 
Category
Date/Time Arithmetic Routines
Week Based Arithmetic RoutinesImplementation
 
| function ISODayOfWeek (const DT: TDateTime): Byte;
begin
     Result := DOW2ISODOW (DayOfWeek (DT));
End; | 
|  |