Keysight Pathwave 89600 VSA .NET API
Coupling Property
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > Analog Class : Coupling Property


Glossary Item Box

Gets or sets the input coupling (either AC or DC).

Syntax

Visual Basic (Declaration) 
Public MustOverride Property Coupling As AnalogChannelCoupling
C# 
public abstract AnalogChannelCoupling Coupling {get; set;}
C++/CLI 
public:
abstract property AnalogChannelCoupling Coupling {
   AnalogChannelCoupling get();
   void set (    AnalogChannelCoupling value);
}

Property Value

Whether the input is AC or DC coupled. The default is AC. Setting the value causes the value to be set on all channels. Getting the value returns the value from the first channel.

Remarks

For multi-channel hardware, Coupling can be set independently for each channel or all channels can be set to the same value. To set the Coupling for an individual channel, use the Coupling property on the appropriate channel. Individual channel settings are available via the Channels collection. To set the Coupling for all channels to the same value, set the value of this property and all channels' Coupling will be set to the same value.

When queried, this property always returns the value for the first channel. For multi-channel hardware, the input Coupling for an individual channel can be retrieved via the Coupling property on the appropriate channel. Individual channel settings are available via the Channels collection.

Requirements

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

See Also