DeepCopy (Screen function)

From m204wiki
Revision as of 23:51, 18 March 2011 by Goff (talk | contribs) (AllowNullObject methods)
Jump to navigation Jump to search

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 (“Copy function”, above). For more information about copyability, see “Copying Objects”.

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