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