Timer プロパティ
更新 : 2007 年 11 月
午前 0 時から経過した秒数を表す倍精度浮動小数点数型 (Double) の値を返します。
ReadOnly Public Property Timer() As Double
解説
Timer プロパティは、前回の午前 0 時から経過した秒数とミリ秒数の両方を返します。秒は戻り値の整数部分で、ミリ秒は小数部分です。
使用例
Timer プロパティを使用してプログラムの実行を一時中断する例を、次に示します。中断している間に、他の処理を実行できます。
Public Sub waitFiveSeconds()
If TimeOfDay >= #11:59:55 PM# Then
MsgBox("The current time is within 5 seconds of midnight" & _
vbCrLf & "The timer returns to 0.0 at midnight")
Return
End If
Dim start, finish, totalTime As Double
If (MsgBox("Press Yes to pause for 5 seconds", MsgBoxStyle.YesNo)) _
= MsgBoxResult.Yes Then
start = Microsoft.VisualBasic.DateAndTime.Timer
' Set end time for 5-second duration.
finish = start + 5.0
Do While Microsoft.VisualBasic.DateAndTime.Timer < finish
' Do other processing while waiting for 5 seconds to elapse.
Loop
totalTime = Microsoft.VisualBasic.DateAndTime.Timer - start
MsgBox("Paused for " & totalTime & " seconds")
End If
End Sub
Timer プロパティを Microsoft.VisualBasic 名前空間で修飾する必要があることに注意してください。なぜなら、Timer は、System.Threading、System.Timers、および System.Windows.Forms の名前空間のクラスにも定義されているからです。
必要条件
名前空間 : Microsoft.VisualBasic
モジュール : DateAndTime
アセンブリ : Visual Basic ランタイム ライブラリ (Microsoft.VisualBasic.dll)
Timer はクラスではなくモジュールのメンバであるため、Timer にアクセスするためのオブジェクトを作成する必要はありません。