Duration.ToText
Επιστρέφει το κείμενο της μορφής "η.ω:λ:δ".
Syntax
Duration.ToText(
duration as duration,
optional format as text
) as text
Remarks
Returns a textual representation in the form "day.hour:mins:sec" of the given duration value, duration.
duration: Adurationfrom which the textual representation is calculated.format: (Optional) Deprecated, will raise an error if not null.
Examples
Example #1
Μετατρέψτε την #duration(2, 5, 55, 20) σε τιμή κειμένου.
Duration.ToText(#duration(2, 5, 55, 20))
Result:
"2.05:55:20"
Category
Duration