System.DateUtils.EndOfAMonth
Delphi
function EndOfAMonth(const AYear, AMonth: Word): TDateTime;
C++
extern DELPHI_PACKAGE System::TDateTime __fastcall EndOfAMonth(const System::Word AYear, const System::Word AMonth);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.DateUtils.pas System.DateUtils.hpp |
System.DateUtils | System.DateUtils |
説明
指定された月の最終日の最後のミリ秒を表す TDateTime 値を返します。
EndOfAMonth 関数は,指定された月の最終日の表現可能な最後の瞬間(午後 11 時 59 分 59 秒 999 ミリ秒)を返します。
AYear パラメータは,目的の月の年を指定します。
AMonth パラメータは月を指定します。有効な値の範囲は 1 ~ 12 です。
範囲外の月を指定すると,EndOfAMonth は EConvertError 例外を生成します。