Interface ICheckBox
A .NET Windows Forms check box.
public interface ICheckBox : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
ErrorText
Returns the tooltip text of the error icon associated with this object.
string ErrorText { get; }
Property Value
IsChecked
Indicates whether this check box is checked.
For Three State Checkbox: IsChecked returns true for either a Checked or Indeterminate State.
bool IsChecked { get; }
Property Value
IsThreeState
Indicates whether this check box is able to display three check states.
bool IsThreeState { get; }
Property Value
State
The check box status.
CheckedState State { get; }
Property Value
- CheckedState
Possible values:
- Checked
- Unchecked
- Indeterminate
Methods
Set(CheckedState)
Sets the value of this check box.
void Set(CheckedState state)
Parameters
stateCheckedStateThe value to be assigned to this check box. Possible values: CheckedState.