Constructor CheckBoxList
- Namespace
- Skyline.DataMiner.Utils.InteractiveAutomationScript
- Assembly
- Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit.dll
CheckBoxList()
Initializes a new instance of the CheckBoxList class.
public CheckBoxList()
CheckBoxList(IEnumerable<T>)
Initializes a new instance of the CheckBoxList class.
public CheckBoxList(IEnumerable<T> options)
Parameters
options
IEnumerable<T>Values that can be selected, every value is visualized in the checkboxlist by its ToString() counterpart.
Exceptions
- ArgumentNullException
When options is null.
CheckBoxList(IEnumerable<Option<T>>)
Initializes a new instance of the CheckBoxList class.
public CheckBoxList(IEnumerable<Option<T>> options)
Parameters
options
IEnumerable<Option<T>>Options that can be selected.
Exceptions
- ArgumentNullException
When options is null.