Table of Contents

Property Id

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

Id

Gets the ID of the underlying dummy that is linked to the element. This is not the ID of the element itself. To retrieve that one, use the ElementId property.

public virtual int Id { get; }

Property Value

int

The ID of the underlying dummy that is linked to the element.

Examples

Element element = engine.FindElement(400, 2000);
int id = element.Id;