Copy (Screen function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 1: Line 1:
{{Template:Screen:Copy subtitle}}
{{Template:Screen:Copy subtitle}}


This method returns a Screen object that is a copy of the method object. For more information about copyability, see “[[Copying Objects]]”
This method returns a Screen object that is a copy of the method object. For more information about copyability, see “[[Copying Objects]]”
==Syntax==
==Syntax==
{{Template:Screen:Copy syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 11: Line 12:
</table>
</table>


==Usage Notes==
==Usage notes==
The method object (%screen) may be null. The output of a copy of a null object is a null object.
The method object (%screen) may be null. The output of a copy of a null object is a null object.
==See also==
==See also==
{{Template:Screen:Copy footer}}
{{Template:Screen:Copy footer}}

Revision as of 19:14, 18 March 2011

Return a copy of a screen object (Screen class)


This method returns a Screen object that is a copy of the method object. For more information about copyability, see &amp;#x201C;Copying Objects&amp;#x201D;

Syntax

%outScreen = screen:Copy

Syntax terms

%outscreen A declared Screen object.
%screen A reference to an instance of a Screen object.

Usage notes

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

See also