Table of Contents

Method AppendParameter

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

AppendParameter(IActionableElement, int)

Adds the display value of the specified (standalone or table) parameter to this dialog box.

public UIBuilder AppendParameter(IActionableElement element, int pid)

Parameters

element IActionableElement

The element the parameter is part of.

pid int

The ID of the parameter.

Returns

UIBuilder

This UIBuilder instance.

Examples

Element element = engine.FindElement(200, 4000);

UIBuilder uibDialogBox = new UIBuilder();
// ...
uibDialogBox.AppendParameter(element, 1000);

AppendParameter(int, int, int)

Adds the display value of the specified (standalone or table) parameter to this dialog box.

public UIBuilder AppendParameter(int dma, int eid, int pid)

Parameters

dma int

The DataMiner Agent ID.

eid int

The element ID.

pid int

The parameter ID.

Returns

UIBuilder

This UIBuilder instance.

Examples

UIBuilder uibDialogBox = new UIBuilder();
// ...
uibDialogBox.AppendParameter(200, 4000, 1000);

AppendParameter(IActionableElement, int, string)

Adds the display value of the specified table cell to this dialog box.

public UIBuilder AppendParameter(IActionableElement element, int pid, string idx)

Parameters

element IActionableElement

The element the parameter is part of.

pid int

The ID of the column parameter.

idx string

The display key of the row.

Returns

UIBuilder

This UIBuilder instance.

Examples

Element element = engine.FindElement(200, 4000);

UIBuilder uibDialogBox = new UIBuilder();
// ...
uibDialogBox.AppendParameter(element, 1002, "Row 1");

AppendParameter(int, int, int, string)

Adds the display value of the specified table cell to this dialog box.

public UIBuilder AppendParameter(int dma, int eid, int pid, string idx)

Parameters

dma int

The DataMiner Agent ID.

eid int

The element ID.

pid int

The ID of the column parameter.

idx string

The row index.

Returns

UIBuilder

This UIBuilder instance.

Examples

UIBuilder uibDialogBox = new UIBuilder();
// ...
uibDialogBox.AppendParameter(200, 4000, 1002, "Row 1");