DeepCopy (UserStatistics function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (AllowNullObject methods)
mNo edit summary
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Template:UserStatistics:DeepCopy subtitle}}
{{Template:UserStatistics:DeepCopy subtitle}}
<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.


This method creates a &amp;amp;ldquo;deep copy&amp;amp;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.
 
For more information about copyability, see [[Copying objects]].
==Syntax==
==Syntax==
{{Template:UserStatistics:DeepCopy syntax}}
{{Template:UserStatistics:DeepCopy syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><i>%newUstat</i></th>
<tr><th>%outUserStatistics</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}}

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