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