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
elementIActionableElementThe element the parameter is part of.
pidintThe ID of the parameter.
Returns
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
Returns
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
elementIActionableElementThe element the parameter is part of.
pidintThe ID of the column parameter.
idxstringThe display key of the row.
Returns
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
dmaintThe DataMiner Agent ID.
eidintThe element ID.
pidintThe ID of the column parameter.
idxstringThe row index.
Returns
Examples
UIBuilder uibDialogBox = new UIBuilder();
// ...
uibDialogBox.AppendParameter(200, 4000, 1002, "Row 1");