DeepCopy (UserStatistics function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (AllowNullObject methods)
m (match syntax table to syntax template, tags and edits)
Line 1: Line 1:
{{Template:UserStatistics:DeepCopy subtitle}}
{{Template:UserStatistics:DeepCopy subtitle}}
 
This method creates a "deep copy" of a <var>UserStatistics</var> object. <var>DeepCopy</var> is identical to the <var>[[Copy (UserStatistics function)|Copy]]</var> method.
This method creates a &amp;amp;ldquo;deep copy&amp;amp;rdquo; of a UserStatistics object.
DeepCopy is identical to the [[Copy (UserStatistics function)|Copy]] method.


For more information about copyability, see [[Copying objects]].
For more information about copyability, see [[Copying objects]].
Line 9: Line 7:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%newUstat</i></th>
<tr><th><i>%outUserStatistics</i></th>
<td>A UserStatistics object variable to contain the copied object. </td></tr>
<td>A <var>UserStatistics</var> object variable to contain the copied object. </td></tr>
<tr><th><i>%ustat</i></th>
<tr><th>userStatistics</th>
<td>A UserStatistics object variable, which may be <var>Null</var>.</td></tr>
<td>A <var>UserStatistics</var> object variable, which may be <var>Null</var>.</td></tr>
</table>
</table>
==See also==
==See also==
{{Template:UserStatistics:DeepCopy footer}}
{{Template:UserStatistics:DeepCopy footer}}

Revision as of 07:32, 25 March 2011

DeepCopy the UserStatistics (UserStatistics class)

This method 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