Interface ICheckBox
A .NET WPF check box.
public interface ICheckBox : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
HelpText
The help text associated with this check box.
string HelpText { get; }
Property Value
IsChecked
Indicates whether this check box is checked.
bool IsChecked { get; }
Property Value
IsThreeState
Indicates whether this check box is able to display three check states.
bool IsThreeState { get; }
Property Value
ParentText
The text associated with the parent object of this object.
string ParentText { get; }
Property Value
State
Returns 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. One of:
- Checked
- Unchecked
- Indeterminate (for three-state check boxes)