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