Copy (UserStatistics function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "<span style="font-size:120%; color:black"><b>Create copy of UserStatistics object</b></span> Copy function Category:System methods <!--DPL...")
 
mNo edit summary
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<span style="font-size:120%; color:black"><b>Create copy of UserStatistics object</b></span>
{{Template:UserStatistics:Copy subtitle}}
[[Category:UserStatistics methods|Copy function]]
<var>Copy</var> creates a copy of a <var>UserStatistics</var> object.
[[Category:System methods]]
 
<!--DPL?? Category:UserStatistics methods|Copy function: Create copy of UserStatistics object-->
==Syntax==
<!--DPL?? Category:System methods|Copy (UserStatistics function): Create copy of UserStatistics object-->
{{Template:UserStatistics:Copy syntax}}
<p>
Copy is a member of the [[UserStatistics class]].
</p>


This method creates a copy of a UserStatistics object.
===Syntax===
  %newUstat = %ustat:Copy
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt><i>%newUstat</i>
<tr><th>%outUserStatistics</th>
<dd>A UserStatistics object variable to contain the copied object.
<td>A <var>UserStatistics</var> object variable to contain the copied object. </td></tr>
<dt><i>%ustat</i>
 
<dd>A UserStatistics object variable.
<tr><th>userStatistics</th>
<td>A <var>UserStatistics</var> object variable, which may be <var>Null</var>.</td></tr>
</table>
 
==Usage notes==
<ul>
<li>For more information about copying, see [[Copying objects|"Copying objects"]].
</ul>


</dl>
==See also==
{{Template:UserStatistics:Copy footer}}

Latest revision as of 20:55, 20 November 2012

Copy the UserStatistics (UserStatistics class)

Copy creates a copy of a UserStatistics object.

Syntax

%outUserStatistics = userStatistics:Copy

Syntax terms

%outUserStatistics A UserStatistics object variable to contain the copied object.
userStatistics A UserStatistics object variable, which may be Null.

Usage notes

See also