Interface BandwidthShaping
Receiver bandwidth shaping.
Namespace: OmicronLab.VectorNetworkAnalysis.AutomationInterface.Interfaces.Shaping
Assembly: OmicronLab.VectorNetworkAnalysis.AutomationInterface.dll (3.50.2911.0)
Syntax
[Guid("86C3AB5F-4537-41F5-85E1-0CF73D8ED352")]
[InterfaceType(ComInterfaceType.InterfaceIsDual)]
[ComVisible(true)]
public interface BandwidthShaping
Properties
Frequencies
Gets the frequencies.
Declaration
double[] Frequencies { get; }
Property Value
Type | Description |
---|---|
System.Double[] | The frequencies. |
IsEnabled
Gets or sets a value indicating whether this instance is enabled.
Declaration
bool IsEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Use shaping if |
ReceiverBandwidths
Gets the receiver bandwidths.
Declaration
ReceiverBandwidth[] ReceiverBandwidths { get; }
Property Value
Type | Description |
---|---|
ReceiverBandwidth[] | The receiver bandwidths. |
ShapedBandwidth
Gets the bandwidth shaping.
Declaration
[ComVisible(false)]
Dictionary<double, ReceiverBandwidth> ShapedBandwidth { get; }
Property Value
Type | Description |
---|---|
Dictionary<System.Double, ReceiverBandwidth> | The bandwidth shaping. |
Methods
Add(Double, ReceiverBandwidth)
Adds the specified frequency and bandwidth for shaping.
Declaration
void Add(double frequency, ReceiverBandwidth bandwidth)
Parameters
Type | Name | Description |
---|---|---|
System.Double | frequency | The frequency. |
ReceiverBandwidth | bandwidth | The bandwidth. |
Clear()
Clears all shaping bandwidths.
Declaration
void Clear()
Remove(Double)
Removes a receiver bandwidth at a specified frequency.
Declaration
bool Remove(double frequency)
Parameters
Type | Name | Description |
---|---|---|
System.Double | frequency | The frequency. |
Returns
Type | Description |
---|---|
System.Boolean |
|