Keysight Pathwave 89600 VSA .NET API
RecallFile(String,String,Boolean) Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Recording Class > RecallFile Method : RecallFile(String,String,Boolean) Method


fileName
Specifies the file name.
format
Specifies the file format.
isSetCenterSpan
Specifies whether SetCenterSpan is called.

Glossary Item Box

Recall the current recording in the specified format from a file.

Syntax

Visual Basic (Declaration) 
Public Overloads Overridable Sub RecallFile( _
   ByVal fileName As String, _
   ByVal format As String, _
   ByVal isSetCenterSpan As Boolean _
) 
C# 
public virtual void RecallFile( 
   string fileName,
   string format,
   bool isSetCenterSpan
)
C++/CLI 
public:
virtual void RecallFile( 
   String^ fileName,
   String^ format,
   bool isSetCenterSpan
) 

Parameters

fileName
Specifies the file name.
format
Specifies the file format.
isSetCenterSpan
Specifies whether SetCenterSpan is called.

Remarks

The current recording, in SDF format, is overwritten.

Supported File Formats:

format Description
"CSV" CSV (Comma delimited) [*.csv]
"E3238S" E3238S Time Snapshot [*.cap]
"MAT" MAT-File [*.mat]
"MAT7" MAT-File (HDF5) [*.mat, *.hdf, *.h5]
"BINF" BINF (Little Endian Real32 Binary) [*.binf]
"N5110A" N5110A Waveform [*.bin]
"N5106A" N5106A Waveform [*.bin]
"SDF" SDF (Fast) [*.sdf, *.dat]
"TEXT" Text (Tab delimited) [*.txt]

Note:
MAT may be used instead of MAT7 for recall trace/recording (the matlab file format is auto detected for recall).

If the format is an empty string, then the application automatically determines the file format by looking at the file suffix.
If this is not sufficient, then the file is scanned to determine the format.
If the format cannot be determined or you specified an unknown format, then an error is raised.

For more information about file types, see the "Supported File Formats" topic in the application help.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

Minimum Software Version Requirement: Keysight PathWave 89600 VSA Ver 17.00

See Also