DeepCopy (Stringlist function)

From m204wiki
Revision as of 17:42, 31 December 2010 by Dme (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Deep Copy Stringlist

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

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

DeepCopy is a member of the Stringlist class.

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

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.