StructCopy()

Makes a copy of the structure and returns a brand new structure, copying all the data held within

Usage

STRUCTURE = StructCopy( struct )
Argument Summary
struct struct1

Calling

Supports named-parameter calling allowing you to use the function like:

StructCopy(
   struct=?
);

Supports passing parameters as a structure using ArgumentCollection:

StructCopy( ArgumentCollection={
   struct : ?
} );