Keysight Pathwave 89600 VSA .NET API
LimitResultData Constructor
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > LimitResultData Class : LimitResultData Constructor


name
The name of the LimitLine.
display
Whether this is a limit or a margin.
result
The pass/fail status of the LimitLine
x
The X-value of the highest Y failure point, or the lowest margin point if LimitLine passed.
y
The Y-value of the highest Y failure point, or the lowest margin point if LimitLine passed.

Glossary Item Box

Initializes a new instance of the LimitResultData class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal name As String, _
   ByVal display As LimitLineDisplay, _
   ByVal result As MarkersLimitTestResult, _
   ByVal x As Double, _
   ByVal y As Double _
)
C# 
public LimitResultData( 
   string name,
   LimitLineDisplay display,
   MarkersLimitTestResult result,
   double x,
   double y
)
C++/CLI 
public:
LimitResultData( 
   String^ name,
   LimitLineDisplay display,
   MarkersLimitTestResult result,
   double x,
   double y
)

Parameters

name
The name of the LimitLine.
display
Whether this is a limit or a margin.
result
The pass/fail status of the LimitLine
x
The X-value of the highest Y failure point, or the lowest margin point if LimitLine passed.
y
The Y-value of the highest Y failure point, or the lowest margin point if LimitLine passed.

Requirements

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

See Also