Returns a time-only value with given numerical hour, minute and seconds values.
Function
result = timefromparts(hour, minute, second)
Arguments
Argument | Data Type |
hour | integer |
---|---|
minute | integer |
second | integer |
result | time |
Comments
Converts individual numbers into a time result.
This function operates without regard to the local time zone. See Dates, Times and Time Zones.
Examples
result = timefromparts(22, 15, 32) /* result is the time 10:15:32 PM */