Keysight Pathwave 89600 VSA .NET API
Create(String,Boolean,Boolean) Method
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > TraceCollection Class > Create Method : Create(String,Boolean,Boolean) Method


dataName
The initial contents (Trace.DataName) of the trace.
useFirstNotVisible
Use the first not visible (Trace.IsVisible) trace, if one is available.
makeVisible
Set Trace.IsVisible) for the trace.

Glossary Item Box

Create a new Trace or return a existing Trace.

Syntax

Visual Basic (Declaration) 
Public Overloads MustOverride Function Create( _
   ByVal dataName As String, _
   ByVal useFirstNotVisible As Boolean, _
   ByVal makeVisible As Boolean _
) As Trace
C# 
public abstract Trace Create( 
   string dataName,
   bool useFirstNotVisible,
   bool makeVisible
)
C++/CLI 
public:
abstract Trace^ Create( 
   String^ dataName,
   bool useFirstNotVisible,
   bool makeVisible
) 

Parameters

dataName
The initial contents (Trace.DataName) of the trace.
useFirstNotVisible
Use the first not visible (Trace.IsVisible) trace, if one is available.
makeVisible
Set Trace.IsVisible) for the trace.

Return Value

The trace.

Remarks

If useFirstNotVisible is True, then the first non-visible trace is returned. If there are not any available traces, then a new trace is created and added to the end of the Trace collection.

Requirements

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

See Also