DateAndTime.Year(DateTime) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回從 1 到 9999 的整數值,表示年份。
public:
static int Year(DateTime DateValue);
public static int Year (DateTime DateValue);
static member Year : DateTime -> int
Public Function Year (DateValue As DateTime) As Integer
參數
- DateValue
- DateTime
必要。 您想要從中擷取年份的 Date
值。
傳回
從 1 到 9999 的整數值,表示年份。
範例
下列範例會 Year
使用 函式,從指定的日期取得年份。 在開發環境中,日期常值會使用程式代碼的地區設定,以簡短日期格式顯示。
Dim thisDate As Date
Dim thisYear As Integer
thisDate = #2/12/1969#
thisYear = Year(thisDate)
' thisYear now contains 1969.
備註
您也可以呼叫 DatePart
並指定 DateInterval.Year
自 Interval
變數來取得年份。