DeepCopy (Screen function): Difference between revisions
Jump to navigation
Jump to search
m (match syntax table to syntax template; edits, tags and links) |
m (re-<var>) |
||
Line 6: | Line 6: | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>% | <tr><th><var>%outScreen</var></th> | ||
<td>A declared <var>Screen</var> object. </td></tr> | <td>A declared <var>Screen</var> object. </td></tr> | ||
<tr><th>screen</th> | <tr><th><var>screen</var></th> | ||
<td>A reference to an instance of a <var>Screen</var> object, which may be <var>Null</var>.</td></tr> | <td>A reference to an instance of a <var>Screen</var> object, which may be <var>Null</var>.</td></tr> | ||
</table> | </table> |
Revision as of 00:07, 26 June 2011
Return a deep copy of a screen object (Screen class)
The DeepCopy method returns a Screen object that is a deep copy of the method object. DeepCopy is identical to the Copy method.
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
- For further information about copying objects, see "Copying objects".