PowerTools InputMan for ASP.NET 8.0J
AddMonths メソッド
使用例 

DateTimeExのインスタンスに加算する月(Int32 型)
月を加算します。
構文
Public Function AddMonths( _
   ByVal value As Integer _
) As DateTimeEx
public DateTimeEx AddMonths( 
   int value
)

パラメータ

value
DateTimeExのインスタンスに加算する月(Int32 型)

戻り値の型

加算後の新しいDateTimeExインスタンス。
解説
AddMonthsメソッドは、呼び出し元のインスタンスにvalue引数で指定した月を加算した新しいDateTimeExインスタンスを作成します。 次のサンプルコードは、AddMonthsメソッドの使用方法を示します。 Imports GrapeCity.Web.Input.Core Imports System.Diagnostics ' 今日から18か月後の日付を算出します。 Dim dtEx As DateTimeEx = DateTimeEx.Today.AddMonths(18) Debug.WriteLine(dtEx.ToLongDateString()) using GrapeCity.Web.Input.Core; using System.Diagnostics; // 今日から18か月後の日付を算出します。 DateTimeEx dtEx = DateTimeEx.Today.AddMonths(18); Debug.WriteLine(dtEx.ToLongDateString());
使用例
次のサンプルコードは、AddMonthsメソッドの使用方法を示します。
Imports GrapeCity.Web.Input.Core
Imports System.Diagnostics

' 今日から18か月後の日付を算出します。
Dim dtEx As DateTimeEx = DateTimeEx.Today.AddMonths(18)
Debug.WriteLine(dtEx.ToLongDateString())
using GrapeCity.Web.Input.Core;
using System.Diagnostics;

// 今日から18か月後の日付を算出します。
DateTimeEx dtEx = DateTimeEx.Today.AddMonths(18);
Debug.WriteLine(dtEx.ToLongDateString());
参照

DateTimeEx クラス
DateTimeEx メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.