Table of Contents

Method SetSweepTime

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

SetSweepTime(double)

Sets the sweep time.

public void SetSweepTime(double value)

Parameters

value double

The sweep time.

Examples

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

preset.SetSweepTime(10);
preset.Save();