Property IsActive
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
IsActive
Gets a value indicating whether this element is active.
public virtual bool IsActive { get; }
Property Value
- bool
true
if the element is active (not stopped or paused); otherwise,false
.
Examples
Element element = engine.FindElement(400, 2000);
bool isActive = element.IsActive;