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


x
X points.
y
Y points.
isConnect
Connect points.

Glossary Item Box

Set multiple points (X, Y, and Connect arrays) for the limit line (removing all previous points).

Syntax

Visual Basic (Declaration) 
Public MustOverride Sub SetPoints( _
   ByVal x() As Double, _
   ByVal y() As Double, _
   ByVal isConnect() As Boolean _
) 
C# 
public abstract void SetPoints( 
   double[] x,
   double[] y,
   bool[] isConnect
)
C++/CLI 
public:
abstract void SetPoints( 
   array<double>^ x,
   array<double>^ y,
   array<bool>^ isConnect
) 

Parameters

x
X points.
y
Y points.
isConnect
Connect points.

Remarks

The x, y, and isConnect arrays must all be the same size. If the X-values in the x array are not in ascending order, then the X-, Y- and Connect-arrays are sorted before being added to the limit line.

Requirements

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

See Also