Difference between revisions of "ISInterface:ExportSet"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool ExportSet(unsigned long &SetGUID, char *Filename)
 
== Purpose ==
 
== Purpose ==
 
+
Save a given set and all their subsets and settings to '''Filename'''
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 +
*unsigned long &SetGUID
 +
:'''[in]''' Unique identifier of the set you want to save
 +
*char *Filename
 +
:'''[in]''' Filename you want to save your settings to
  
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
+
*pISInterface->ExportSet(ParentSet,"default.xml");
  
 
== See Also ==
 
== See Also ==

Latest revision as of 00:52, 3 September 2005

Syntax

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

Purpose

Save a given set and all their subsets and settings to Filename

Usage

Parameters

  • unsigned long &SetGUID
[in] Unique identifier of the set you want to save
  • char *Filename
[in] Filename you want to save your settings to

Return Value

  • bool
Returns true on success, false on failure

Examples

*pISInterface->ExportSet(ParentSet,"default.xml");

See Also