<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > BuiltIn Functions > Date and Time > cDateTime > cDateTime_Properties > <cDateTime>.mSecond |
Description
Returns the Millisecond component of the cDateTime object.
Syntax
n = <cDateTime>.mSecond
n = <cDateTime>.MilliSecond
Returns
Number in range 0 - 999.
Remarks
Restrictions
See also
Examples
' Create an object with current date and time
Dim myDateTime As New cDateTime
' Show it to the user
MsgBox 0, "myDateTime millisecond:" + $CRLF + myDateTime.mSecond