Property Name
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
Name
Gets the name of the underlying dummy that is linked to the element. This is not the name of the element itself. To retrieve that one, use the ElementName property.
public virtual string Name { get; }
Property Value
- string
The name of the underlying dummy that is linked to the element.
Examples
Element element = engine.FindElement(400, 2000);
string elementName = element.Name;
Remarks
note
This property returns the following string: "_<agentID>_<elementID> (e.g. "_100_5612"). To retrieve the element name, use the ElementName property.