| ThisISODOW Function | 
Unit
QESBPCSDateTime
Declaration
Function ThisISODOW: Byte;
Returns
the DOW Number, 1 through 7 where 1 is Monday.
Category
Date/Time Conversion RoutinesImplementation
 
| function ThisISODOW: Byte;
begin
     Result := ISODayOfWeek (ESBToday);
End; | 
|  |