DeepCopy (Stringlist 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.

Copy Stringlist (Stringlist class)


This method copies an entire Stringlist, creating a new Stringlist.

DeepCopy is identical to the Copy. For more information about deep copyability, see "Copying objects". The DeepCopy method accepts no argument and returns a Stringlist object.

Syntax

%outList = sl:DeepCopy

Syntax terms

%outList This is a new Stringlist that is a deep copy of sl, the method Stringlist.
sl A Stringlist object, which may be Null.

Usage notes

  • All errors in DeepCopy result in request cancellation.
  • The method object (sl) may be null. The output of a copy of a null object is a null object.

See also