DateAndTime.Minute(DateTime) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回從 0 到 59 的整數值,表示小時內的分鐘數。
public:
static int Minute(DateTime TimeValue);
public static int Minute (DateTime TimeValue);
static member Minute : DateTime -> int
Public Function Minute (TimeValue As DateTime) As Integer
參數
- TimeValue
- DateTime
必要。 您想要從中擷取分鐘的 Date
值。
傳回
從 0 到 59 的整數值,表示小時內的分鐘數。
範例
這個範例會使用 函 Minute
式,從指定的時間取得小時分鐘數。 在開發環境中,時間常值會使用程式代碼的地區設定,以短時間格式顯示。
Dim thisTime As Date
Dim thisMinute As Integer
thisTime = #4:35:17 PM#
thisMinute = Minute(thisTime)
' thisMinute now contains 35.
備註
您也可以呼叫 DatePart
並指定 DateInterval.Minute
Interval
自變數,以取得小時的分鐘數。