DateAndTime.Month(DateTime) メソッド

定義

月を表す 1 から 12 の整数値を返します。

public:
 static int Month(DateTime DateValue);
public static int Month (DateTime DateValue);
static member Month : DateTime -> int
Public Function Month (DateValue As DateTime) As Integer

パラメーター

DateValue
DateTime

必須です。 月を抽出する Date 値。

戻り値

月を表す 1 から 12 の整数値。

この例では、 関数を Month 使用して、指定した日付から月を取得します。 開発環境では、コードのロケール設定を使用して、日付リテラルが短い日付形式で表示されます。

Dim thisDate As Date
Dim thisMonth As Integer
thisDate = #2/12/1969#
thisMonth = Month(thisDate)
' thisMonth now contains 2.

注釈

また、 を呼び出DatePartして 引数に を指定することで、年の月をDateInterval.MonthInterval取得することもできます。

適用対象

こちらもご覧ください