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


hwType
Which type of hardware within the HardwareGroup this parameter should apply to. Only the Adc type is currently supported.

Glossary Item Box

Gets an array of strings representing the named parameters that can be configured on this hardware.

Syntax

Visual Basic (Declaration) 
Public Function ParameterNames( _
   ByVal hwType As InstrumentType _
) As String()
C# 
public string[] ParameterNames( 
   InstrumentType hwType
)
C++/CLI 
public:
array<String^>^ ParameterNames( 
   InstrumentType hwType
) 

Parameters

hwType
Which type of hardware within the HardwareGroup this parameter should apply to. Only the Adc type is currently supported.

Return Value

Array of parameter names. Empty array if the hardware has no configurable input extension parameters.

Exceptions

ExceptionDescription
System.ArgumentOutOfRangeExceptionThe hardware type is is not InstrumentType.Adc

Remarks

Note: It is recommended to use the strongly typed methods and properties on sub-classes of this class instead of this method. See the specific Input Extension class for the hardware that is being used.

These parameter names can be used with the SetParameter or GetParameter property to set or get parameter Values.

Requirements

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

See Also