DeepCopy (MarksStoreArray function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (AllowNullObject methods)
 
(4 intermediate revisions by one other user not shown)
Line 7: Line 7:
<tr><th>%marksStoreArray</th><td><var>MarksStoreArray</var> object.</td></tr>
<tr><th>%marksStoreArray</th><td><var>MarksStoreArray</var> object.</td></tr>
<tr><th>marksStoreArray</th>
<tr><th>marksStoreArray</th>
<td><var>MarksStoreArray</var> object</td></tr>
<td><var>MarksStoreArray</var> object, which may be <var>Null</var>.</td></tr>
</table>
</table>


==Usage notes==
==Usage notes==
<ul>
<li>All errors in <var>DeepCopy</var> result in request cancellation.
</ul>
==Examples==
==Examples==
<ol><li><var>DeepCopy</var> will create a new MarksStoreArray instance that's a copy of the method object. The method retuns a new marksStoreArray object.
<p class="code">%ma2 = %ma:deepCopy                       
</p>
</ol>
==See also==
==See also==
{{Template:MarksStoreArray:DeepCopy footer}}
{{Template:MarksStoreArray:DeepCopy footer}}

Latest revision as of 23:57, 18 March 2011

Copy MarksStoreArray (MarksStoreArray class)


Syntax

%outMarksStoreArray = marksStoreArray:DeepCopy

Syntax terms

%marksStoreArrayMarksStoreArray object.
marksStoreArray MarksStoreArray object, which may be Null.

Usage notes

  • All errors in DeepCopy result in request cancellation.

Examples

  1. DeepCopy will create a new MarksStoreArray instance that's a copy of the method object. The method retuns a new marksStoreArray object.

    %ma2 = %ma:deepCopy

See also