Time.FromText
Creates a Time from local and universal Time formats.
function (optionaltext
as nullable any, optionalculture
as nullable any) as nullable any
Creates a
time
value from a textual representation, text
, following ISO 8601 format standard. Time
Convert
"10:12:31am"
into a Time value.Time.FromText("10:12:31am")
time(10, 12, 31)
Convert
"1012"
into a Time value.Time.FromText("1012")
time(10, 12, 00)
Convert
"10"
into a Time value.Time.FromText("10")
time(10, 00, 00)
Last modified 4yr ago