DeepCopy (Screen function)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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