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