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


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

Glossary Item Box

Add multiple points (X, Y, and Connect arrays) to the limit line.

Syntax

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

Parameters

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

Remarks

The points are inserted into the limit line in ascending X-value order. Any new points are inserted after any existing points with the same X values. The x, y, and isConnect arrays must all be the same size.

Requirements

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

See Also