Date2LongDOW Function |
Unit
QESBPCSDateTime
Declaration
Function Date2LongDOW(const DT: TDateTime): string;
Description
Relies on Regional Settings.
Parameters |
DT | Date/Time to convert. |
Returns
the Long Day of Week Name for the given Date.
Category
Date/Time Conversion RoutinesImplementation
function Date2LongDOW (const DT: TDateTime): string; begin Result := LongDayNames [DayOfWeek (DT)]; End; |
|