Keysight Pathwave 89600 VSA .NET API
RecallMultifile Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Recording Class : RecallMultifile Method


fileNames
Specifies the files to recall.
format
Specifies the file format.
paddingType
Specifies the type of padding to perform.
padding
Specifies the amount of padding (interpretation of this parameter depends on the paddingType).

Glossary Item Box

Recall multiple recording files in the specified format and pad the recording according to the paddingType, only single channel per file is currently supported with this method.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub RecallMultifile( _
   ByVal fileNames() As String, _
   ByVal format As String, _
   ByVal paddingType As RecordPaddingType, _
   ByVal padding As Single _
) 
C# 
public virtual void RecallMultifile( 
   string[] fileNames,
   string format,
   RecordPaddingType paddingType,
   float padding
)
C++/CLI 
public:
virtual void RecallMultifile( 
   array<String^>^ fileNames,
   String^ format,
   RecordPaddingType paddingType,
   float padding
) 

Parameters

fileNames
Specifies the files to recall.
format
Specifies the file format.
paddingType
Specifies the type of padding to perform.
padding
Specifies the amount of padding (interpretation of this parameter depends on the paddingType).

Remarks

The current recording, in SDF format, is overwritten. SetCenterSpan is called as part of this method.

Supported File Formats:

format Description
"CSV" CSV (Comma delimited) [*.csv]
"MAT" MAT-File [*.mat]
"MAT7" MAT-File (HDF5) [*.mat, *.hdf, *.h5]
"TEXT" Text (Tab delimited) [*.txt]
"VITA49" VITA 49 [*.vita49]

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

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 28.00

See Also