Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Time.From(value as any, optional culture as nullable text) as nullable time
About
Returns a time
value from the given value
. An optional culture
may also be provided (for example, "en-US"). If the given value
is null
, Time.From returns null
. If the given value
is time
, value
is returned. Values of the following types can be converted to a time
value:
text
: Atime
value from textual representation. Refer to Time.FromText for details.datetime
: The time component of thevalue
.datetimezone
: The time component of the local datetime equivalent ofvalue
.number
: Atime
equivalent to the number of fractional days expressed byvalue
. Ifvalue
is negative or greater or equal to 1, an error is returned.
If value
is of any other type, an error is returned.
Example 1
Convert 0.7575
to a time
value.
Usage
Time.From(0.7575)
Output
#time(18, 10, 48)
Example 2
Convert #datetime(1899, 12, 30, 06, 45, 12)
to a time
value.
Usage
Time.From(#datetime(1899, 12, 30, 06, 45, 12))
Output
#time(06, 45, 12)