DeepCopy (UserStatistics function): Difference between revisions

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


This method creates a &ldquo;deep copy&rdquo; of a UserStatistics object.
For more information about copyability, see [[Copying objects|"Copying objects"]].
DeepCopy is identical to the [[Copy (UserStatistics function)|Copy]] method.
==Syntax==
 
{{Template:UserStatistics:DeepCopy syntax}}
For more information about copyability, see [[Copying objects]].
===Syntax===
  %newUstat = %ustat:DeepCopy
===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>
<tr><th>userStatistics</th>
<dd>A UserStatistics object variable.
<td>A <var>UserStatistics</var> object variable, which may be <var>Null</var>.</td></tr>
</table>


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

Latest revision as of 01:00, 3 May 2011

DeepCopy the UserStatistics (UserStatistics class)

DeepCopy creates a "deep copy" of a UserStatistics object. DeepCopy is identical to the Copy method.

For more information about copyability, see "Copying objects".

Syntax

%outUserStatistics = userStatistics:DeepCopy

Syntax terms

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

See also