Saves multiple curves to a multiplexer file.


Namespace: PalmSens.DataFiles
Assembly: PalmSens (in PalmSens.dll)

Syntax

Visual Basic (Declaration)
Public Sub Save( _ 
   ByVal strFilename As String,  _ 
   ByVal CurveArray As Curve() _ 
)
C#
public void Save(
   string strFilename,
   Curve[] CurveArray
)
C++
public:
 void Save(
   String strFilename,
   array<Curve>^ CurveArray
) sealed 
J#
public void Save(
   string strFilename,
   Curve[] CurveArray
)
JScript
public  function Save(
   strFilename : String,
   CurveArray : Curve[]
)

Parameters

strFilename
path to save to
CurveArray
Array of curves

Remarks

Saving a multiplexer file requires eight curves. Empty curves (Curve is Nothing) are automatically filled automatically with zeros for every current (as shown on Y-axis) value.

See Also