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


moduleOrTool
Module or tool name for which output bus names are requested.

Glossary Item Box

Returns a list of data bus names at the output of the given module or tool.

Syntax

Visual Basic (Declaration) 
Public MustOverride Function GetDataBusNames( _
   ByVal moduleOrTool As String _
) As String()
C# 
public abstract string[] GetDataBusNames( 
   string moduleOrTool
)
C++/CLI 
public:
abstract array<String^>^ GetDataBusNames( 
   String^ moduleOrTool
) 

Parameters

moduleOrTool
Module or tool name for which output bus names are requested.

Return Value

string array

Remarks

This property returns an array of bus names that are available as output from a specified data module or tool. Bus names are used to set the DataBusPart1 or DataBusPart2 properties for a channel. Valid DataModule names are given by the ValidValues("DataModule") function. Valid DataTool names for a given module are given by the GetDataToolNames(module) method. The module and bus names are re-read from the logic analyzer each time a VSA measurement is restarted following a call to Disconnect() on the HardwareConfiguration object used by the measurement.

Requirements

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

See Also