LastUpdateTime (ProcedureInfo function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
m (→‎Syntax terms: extra digits are set to 0)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:ProcedureInfo:LastUpdateTime subtitle}}
{{Template:ProcedureInfo:LastUpdateTime subtitle}}


This page is [[under construction]]
 
==Syntax==
==Syntax==
{{Template:ProcedureInfo:LastUpdateTime syntax}}
{{Template:ProcedureInfo:LastUpdateTime syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table>
<tr><th>%string</th><td>string</td></tr>
<tr><th>%string</th>
<td>A string variable to contain the time of the last update to the <var class="term">procedureInfo</var> procedure.
</td></tr>
 
<tr><th>procedureInfo</th>
<tr><th>procedureInfo</th>
<td>ProcedureInfo object</td></tr>
<td>A <var>ProcedureInfo</var> object variable or expression.</td></tr>
 
<tr><th>string</th>
<tr><th>string</th>
<td>string</td></tr>
<td>An optional string that specifies the format of the date value, as described in [[Datetime string formats]]. The default date format is <code>YYYYMMDDHHMISSXX</code>. An invalid format causes a request cancellation, but if you ask for more digits than are available (<code>XXX</code> instead of <code>XX</code>, for example), the extra digit(s) are set to 0.
<p>
See also <var>[[LastUpdateTimeMilliseconds (ProcedureInfo function)|LastUpdateTimeMilliseconds]]</var>. </p></td></tr>
</table>
</table>
==Usage notes==
 
==Examples==
==Examples==
See the <var>ProcedureInfo</var> class [[ProcedureInfo class#Example|"Example"]].
==See also==
==See also==
{{Template:ProcedureInfo:LastUpdateTime footer}}
{{Template:ProcedureInfo:LastUpdateTime footer}}

Latest revision as of 19:20, 20 June 2017

Most recent update as date string (ProcedureInfo class)

[Introduced in Sirius Mods 7.8]


Syntax

%string = procedureInfo:LastUpdateTime[( [string])]

Syntax terms

%string A string variable to contain the time of the last update to the procedureInfo procedure.
procedureInfo A ProcedureInfo object variable or expression.
string An optional string that specifies the format of the date value, as described in Datetime string formats. The default date format is YYYYMMDDHHMISSXX. An invalid format causes a request cancellation, but if you ask for more digits than are available (XXX instead of XX, for example), the extra digit(s) are set to 0.

See also LastUpdateTimeMilliseconds.

Examples

See the ProcedureInfo class "Example".

See also