<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > BuiltIn Functions > Date and Time > cDateTime > cDateTime_Methods > <cDateTime>.ToLocalTime |
Description
Conversion from UTC to LOCAL.
Presuming the current value of cDateTime contains LOCAL date and time, modifies the calling cDateTime object in a way it represents UTC date and time.
Syntax
<cDateTime>.ToLocalTime
Returns
None.
Remarks
Presumes the cDateTime variable contains UTC date/time at the time of calling .ToLocalTime.
Restrictions
See also
Examples
' Create an object with current date and time
Dim myDateTime As New cDateTime
' Set date to UTC 30th December of 2000
myDateTime.NewDate(2000, 12, 30)
' Set time to UTC 15:45
myDateTime.NewTime(15, 45)
' Display UTC value
MsgBox 0, "myDateTime now in UTC:" + $CRLF + myDateTime.toString
' Alters the state of the myDateTime, converting the previous UTC value to your local value
myDateTime.ToLocalTime
' If you live in other than UTC slice of the world, you will see an altered value :)
MsgBox 0, "Altered myDateTime is:" + $CRLF + myDateTime.toString