Table of Contents

Method SetFrequencySpan

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

SetFrequencySpan(double)

Sets the frequency span.

public void SetFrequencySpan(double value)

Parameters

value double

The frequency span.

Examples

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

preset.SetFrequencySpan(10000000);
preset.Save();