DateAndTime.Second(DateTime) メソッド

定義

秒を表す 0 から 59 の整数値を返します。

public:
 static int Second(DateTime TimeValue);
public static int Second (DateTime TimeValue);
static member Second : DateTime -> int
Public Function Second (TimeValue As DateTime) As Integer

パラメーター

TimeValue
DateTime

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

戻り値

秒を表す 0 から 59 の整数値。

次の例では、 関数を Second 使用して、指定した時刻から 2 番目の分を取得します。 開発環境では、コードのロケール設定を使用して、時刻リテラルが短い時刻形式で表示されます。

Dim thisTime As Date
Dim thisSecond As Integer
thisTime = #4:35:17 PM#
thisSecond = Second(thisTime)
' thisSecond now contains 17.

注釈

また、 を呼び出DatePartして 引数に を指定することで、分の 2 番目をDateInterval.SecondInterval取得することもできます。

適用対象

こちらもご覧ください