Method GetTableDisplayKeys
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
GetTableDisplayKeys(int)
Gets the display keys of the specified table.
public virtual string[] GetTableDisplayKeys(int tablePid)
Parameters
tablePid
intThe table or column parameter ID.
Returns
- string[]
The display keys.
Examples
Element element = engine.FindElement(400, 2000);
string[] displayKeys = element.GetTableDisplayKeys(1000);
GetTableDisplayKeys(string)
Gets the display keys of the specified table.
public virtual string[] GetTableDisplayKeys(string tableParameterName)
Parameters
tableParameterName
stringThe name of the table or column parameter ID.
Returns
- string[]
The display keys.
Examples
Element element = engine.FindElement(400, 2000);
string[] displayKeys = element.GetTableDisplayKeys("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.