Difference between revisions of "ISInterface:CopySet"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool CopySet(unsigned long &ToSetGUID, unsigned long FromSetGUID)
 
== Purpose ==
 
== Purpose ==
 
+
To copy from one set to another
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*unsigned long &ToSetGUID
 +
:'''[out]''' unique identifier of the set to be copied to
 +
*unsigned long FromSetGUID
 +
:'''[in]''' unique identifier of the set to be copied from
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
+
*pISInterface->CopySet(newsetguid,oldsetguid);
  
 
== See Also ==
 
== See Also ==

Latest revision as of 00:57, 3 September 2005

Syntax

  • bool CopySet(unsigned long &ToSetGUID, unsigned long FromSetGUID)

Purpose

To copy from one set to another

Usage

Parameters

  • unsigned long &ToSetGUID
[out] unique identifier of the set to be copied to
  • unsigned long FromSetGUID
[in] unique identifier of the set to be copied from

Return Value

  • bool
Returns true on success, false on failure

Examples

  • pISInterface->CopySet(newsetguid,oldsetguid);

See Also