Copy (MarksStoreArray function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 17: Line 17:


==Examples==
==Examples==
<ol><li><var>Copy</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">%ma = new                                 
%ma2 = %ma:copy                       
</p>
</ol>
==See also==
==See also==
{{Template:MarksStoreArray:Copy footer}}
{{Template:MarksStoreArray:Copy footer}}

Revision as of 10:29, 18 February 2011

Copy MarksStoreArray (MarksStoreArray class)


Syntax

%outMarksStoreArray = marksStoreArray:Copy

Syntax terms

%outMarksStoreArray A MarksStoreArray to contain the copy of the method MarksStoreArray marksStoreArray
marksStoreArray MarksStoreArray object.

Usage notes

  • All errors in Copy result in request cancellation.

Examples

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

    %ma = new %ma2 = %ma:copy

See also