Difference between revisions of "ISInterface:ImportToSet"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool ImportToSet(unsigned long &SetGUID, char *Filename)
 
== Purpose ==
 
== Purpose ==
 
+
Imports a filename into a given set
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*unsigned long &SetGUID
 +
:'''[in]''' unique identifier of the set to add to
 +
*char *Filename
 +
:'''[in]''' Filename to import from
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
+
*pISInterface->ImportToSet(ParentSet,"default2.xml");
  
 
== See Also ==
 
== See Also ==

Latest revision as of 00:56, 3 September 2005

Syntax

  • bool ImportToSet(unsigned long &SetGUID, char *Filename)

Purpose

Imports a filename into a given set

Usage

Parameters

  • unsigned long &SetGUID
[in] unique identifier of the set to add to
  • char *Filename
[in] Filename to import from

Return Value

  • bool
Returns true on success, false on failure

Examples

  • pISInterface->ImportToSet(ParentSet,"default2.xml");

See Also