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


Glossary Item Box

Gets or sets the current point of the recording playback.

Syntax

Visual Basic (Declaration) 
Public MustOverride Property PlayPosition As Integer
C# 
public abstract int PlayPosition {get; set;}
C++/CLI 
public:
abstract property int PlayPosition {
   int get();
   void set (    int value);
}

Remarks

Determine in units of points the data location in the recording at which play back into the measurement will occur. The position is relative to the beginning of the recording (0 is first point). The Position point is determined by the following calculation:

PlayPosition = (Play Position Time (sec) - PlayDelaySec) x PlaySampleRate

When you restart the measurement (with Measurement.Start), the Position is set to the Value of PlayStart. When the Position reaches the end of the recording data (PlayStop property), the measurement either pauses or loops to the PlayStart position, depending upon the state of the PlayLoop property.
The Position property is reset to the beginning of the recording when you record new data, recall a recording, or enter playback mode (set Inputs.DataFrom to DataSource.Recording).

Requirements

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

See Also