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
IActionableElementThe element the parameter is part of.
pid
intThe 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
element
IActionableElementThe element the parameter is part of.
pid
intThe ID of the column parameter.
idx
stringThe 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
dma
intThe DataMiner Agent ID.
eid
intThe element ID.
pid
intThe ID of the column parameter.
idx
stringThe row index.
Returns
Examples
UIBuilder uibDialogBox = new UIBuilder();
// ...
uibDialogBox.AppendParameter(200, 4000, 1002, "Row 1");