printTime(dayFraction: number) 🡒 text, pure function
Takes a fraction of the day (number between 0 and 1) and returns a text value formatted as "HH:mm:ss".
This function is the reverse of parseTime(text).
printTime(dayFraction: number, format: text) 🡒 text, pure function
Takes a fraction of the day (number between 0 and 1) returns a text value formatted according to the specified format following .NET Custom Time Format.
This function is the reverse of parseTime(text, text).