Interface ICheckBox
A .NET WPF check box.
Inherited Members
Namespace: HP.LFT.SDK.WPF
Assembly: HP.LFT.SDK.dll
Syntax
public interface ICheckBox : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
Properties
HelpText
The help text associated with this check box.
Declaration
string HelpText { get; }
Property Value
| Type | Description |
|---|---|
| string |
IsChecked
Indicates whether this check box is checked.
Declaration
bool IsChecked { get; }
Property Value
| Type | Description |
|---|---|
| bool |
IsThreeState
Indicates whether this check box is able to display three check states.
Declaration
bool IsThreeState { get; }
Property Value
| Type | Description |
|---|---|
| bool |
ParentText
The text associated with the parent object of this object.
Declaration
string ParentText { get; }
Property Value
| Type | Description |
|---|---|
| string |
State
Returns the check box status.
Declaration
CheckedState State { get; }
Property Value
| Type | Description |
|---|---|
| CheckedState | Possible values:
|
Methods
Set(CheckedState)
Sets the value of this check box.
Declaration
void Set(CheckedState state)
Parameters
| Type | Name | Description |
|---|---|---|
| CheckedState | state | The value to be assigned. One of:
|