Table of Contents

Method GetPropertyValue

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

GetPropertyValue(string)

Gets the value of the specified element property.

public virtual string GetPropertyValue(string propertyName)

Parameters

propertyName string

The name of the property.

Returns

string

The property value or null when not found.

Examples

Element element = engine.FindElement(400, 2000);
var propertyValue = element.GetPropertyValue("MyProperty");