System.DateUtils.RecodeMonth
Delphi
function RecodeMonth(const AValue: TDateTime; const AMonth: Word): TDateTime;
C++
extern DELPHI_PACKAGE System::TDateTime __fastcall RecodeMonth(const System::TDateTime AValue, const System::Word AMonth);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.DateUtils.pas System.DateUtils.hpp |
System.DateUtils | System.DateUtils |
説明
指定された TDateTime 値の月を置換します。
RecodeMonth 関数を呼び出すと,AValue で指定された日付時刻値を,月を AMonth に変更して得られた値で変換できます。AMonth の有効な値は 1 ~ 12 です。
AMonth で指定された値が有効な月を表していない場合,または変更によって無効な日になってしまう場合(1 月 31 日から 2 月 31 日への変更など),RecodeMonth は EConvertError 例外を生成します。