MillisecondsToString (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 17: Line 17:
==See also==
==See also==
<ul>
<ul>
<li>Related intrinsic methods:
<li>Related intrinsic methods (provide conversion from one form of date representation to another):
<ul>
<ul>
<li><var>[[DaysToString (Float_function)|DaysToString]]</var>
<li><var>[[DaysToString (Float_function)|DaysToString]]</var>

Revision as of 17:37, 12 July 2012

Convert milliseconds since 1900 to string date/time (Float class)

[Introduced in Sirius Mods 7.8]


The MillisecondsToString intrinsic function operates on a Float value representing milliseconds since 1900 and returns a formatted string representing that date/time.

Syntax

%string = float:MillisecondsToString( format)

Syntax terms

%stringA variable to receive the formatted date/time string result of the MillisecondsToString method.
floatA Float value representing milliseconds since 1900.
formatA valid date/time string format.

Examples

See the StringToMilliseconds example.

See also