Table of Contents

Method SetVBW

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

SetVBW(double)

Sets the video bandwidth (VBW).

public void SetVBW(double value)

Parameters

value double

The video bandwidth.

Examples

Element mySpectrumAnalyzerElement = engine.FindElement("MyElement");
SpectrumPreset preset = elementSa.GetSpectrumPreset("MyPreset");

preset.SetVBW(1000000);
preset.Save();