Class CheckBox
- Namespace
- Skyline.DataMiner.Utils.InteractiveAutomationScript
- Assembly
- Skyline.DataMiner.Utils.InteractiveAutomationScriptToolkit.dll
A checkbox that can be selected or cleared.
public class CheckBox : InteractiveWidget
- Inheritance
-
CheckBox
- Inherited Members
- Extension Methods
Constructors
- CheckBox()
Initializes a new instance of the CheckBox class.
- CheckBox(string)
Initializes a new instance of the CheckBox class.
Properties
- IsChecked
Gets or sets a value indicating whether the checkbox is selected.
- IsReadOnly
Gets or sets a value indicating whether the control is displayed in read-only mode. Read-only mode causes the widgets to appear read-write but the user won't be able to change their value. This only affects interactive scripts running in a web environment.
- Text
Gets or sets the displayed text next to the checkbox.
- Tooltip
Gets or sets the tooltip.
Methods
- LoadResult(UIResults)
Load any changes made through user interaction.
- RaiseResultEvents()
Raises zero or more events of the widget. This method is called after LoadResult(UIResults) was called on all widgets.
Events
- Changed
Triggered when the state of the checkbox changes. WantsOnChange will be set to true when this event is subscribed to.
- Checked
Triggered when the checkbox is selected. WantsOnChange will be set to true when this event is subscribed to.
- FocusLost
Triggered when the user loses focus of the CheckBox. WantsOnFocusLost will be set to true when this event is subscribed to.
- UnChecked
Triggered when the checkbox is cleared. WantsOnChange will be set to true when this event is subscribed to.