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


destinationArray
array to return the Y data points
destinationIndex
offset into the destination array.
sourceIndex
offset into the Y data points
length
length of the Y data points to return

Glossary Item Box

Gets a portion of the Y data points as a float or double array

Syntax

Visual Basic (Declaration) 
Public Overridable Sub GetData( _
   ByVal destinationArray As Array, _
   ByVal destinationIndex As Integer, _
   ByVal sourceIndex As Integer, _
   ByVal length As Integer _
) 
C# 
public virtual void GetData( 
   Array destinationArray,
   int destinationIndex,
   int sourceIndex,
   int length
)
C++/CLI 
public:
virtual void GetData( 
   Array^ destinationArray,
   int destinationIndex,
   int sourceIndex,
   int length
) 

Parameters

destinationArray
array to return the Y data points
destinationIndex
offset into the destination array.
sourceIndex
offset into the Y data points
length
length of the Y data points to return

Remarks

The data is filled starting with the first element in the passed data array. No data is initialized in the passed data array after the specified length.

Requirements

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

See Also