DeepCopy (Screen function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (AllowNullObject methods)
Line 9: Line 9:
<td>A declared Screen object. </td></tr>
<td>A declared Screen object. </td></tr>
<tr><th>%screen</th>
<tr><th>%screen</th>
<td>A reference to an instance of a Screen object.</td></tr>
<td>A reference to an instance of a Screen object, which may be <var>Null</var>.</td></tr>
</table>
</table>



Revision as of 23:51, 18 March 2011

Return a deep copy of a screen object (Screen class)


This method returns a Screen object that is a deep copy of the method object. DeepCopy is identical to the Copy method (&amp;#x201C;Copy function&amp;#x201D;, above). For more information about copyability, see &amp;#x201C;Copying Objects&amp;#x201D;.

Syntax

%outScreen = screen:DeepCopy

Syntax terms

%outscreen A declared Screen object.
%screen A reference to an instance of a Screen object, which may be Null.

Usage notes

The method object (%screen) may be null. The output of a copy of a null object is a null object.

See also