Table of Contents

Interface ICheckBox

Namespace
HP.LFT.SDK.WPF
Assembly
HP.LFT.SDK.dll

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

string

IsChecked

Indicates whether this check box is checked.

bool IsChecked { get; }

Property Value

bool

IsThreeState

Indicates whether this check box is able to display three check states.

bool IsThreeState { get; }

Property Value

bool

ParentText

The text associated with the parent object of this object.

string ParentText { get; }

Property Value

string

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

state CheckedState

The value to be assigned. One of:

  • Checked
  • Unchecked
  • Indeterminate (for three-state check boxes)