Table of Contents

Method GetTableKeyMappings

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

GetTableKeyMappings(string)

Gets the primary key to display key map of the specified table.

public virtual DynamicTableIndicesResponse GetTableKeyMappings(string tableParameterName)

Parameters

tableParameterName string

The name of the table or column parameter.

Returns

DynamicTableIndicesResponse

The primary key to display key map of the specified table.

Examples

Element element = engine.FindElement(400, 2000);
var keyMap = element.GetTableKeyMappings("MyTable");

Remarks

The specified value for the tableParameterName argument should be the value of the Description tag of the parameter and not the value of the Name tag.

GetTableKeyMappings(int)

Gets the primary key to display key map of the specified table.

public virtual DynamicTableIndicesResponse GetTableKeyMappings(int tablePid)

Parameters

tablePid int

The ID of the table or column parameter.

Returns

DynamicTableIndicesResponse

The primary key to display key map of the specified table.

Examples

Element element = engine.FindElement(400, 2000);
var keyMap = element.GetTableKeyMappings(1000);