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


x
X point value.
y
Y point value.
isConnect
Whether the point is connected or not.

Glossary Item Box

Add a single point (X, Y, and Connect) to the limit line.

Syntax

Visual Basic (Declaration) 
Public MustOverride Function AddPoint( _
   ByVal x As Double, _
   ByVal y As Double, _
   ByVal isConnect As Boolean _
) As Integer
C# 
public abstract int AddPoint( 
   double x,
   double y,
   bool isConnect
)
C++/CLI 
public:
abstract int AddPoint( 
   double x,
   double y,
   bool isConnect
) 

Parameters

x
X point value.
y
Y point value.
isConnect
Whether the point is connected or not.

Return Value

The index of the new point.

Remarks

The single point is inserted into the limit line in ascending X-value order. This point is inserted after any existing point with the same X value.

Requirements

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

See Also