<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > BuiltIn Functions > Date and Time > cDateTime > cDateTime_Methods > <cDateTime>.TimeStringFull |
Description
Returns time component of cDateTime object as text in 24 hour format, including information about hours, minutes, seconds and milliseconds.
Syntax
<cDateTime>.TimeStringFull
Returns
String in HH:mm:ss.SSS form, for example "14:45:10.045"
Remarks
Restrictions
See also
Examples
' Create an object with current date and time
Dim myDateTime As New cDateTime
' Display time part of myDateTime as 24 hour format string
MsgBox 0, "myDateTime time:" + $CRLF + myDateTime.timeStringFull