...
Table plus | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||
|
Description
Excerpt | ||
---|---|---|
| ||
Converts a date to the specified time zone. |
...
Table plus | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
|
Return Type
Date
Example
Code Block | ||
---|---|---|
| ||
desc = ""; date d = toDate(2012, 01, 20, 0, 0, 0, 0, "GMT-8"); string format = "dd-MMM-yyyy HH:mm:ss Z"; desc += formatDate(d, format) + " converted to " + formatDate(toTimeZone(d, "GMT+2"), format); |
...