Table of Contents

Interface ICheckBox

A checkbox control in a SAP GUI for Windows application.

Namespace: HP.LFT.SDK.SAP.GUI
Assembly: HP.LFT.SDK.dll
Syntax
public interface ICheckBox : IElement, ITestObject, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IEnabledProvider

Properties

AttachedText

The text associated with the checkbox.

Declaration
string AttachedText { get; }
Property Value
Type Description
string

IsChecked

Indicates whether this check box is selected.

Declaration
bool IsChecked { get; }
Property Value
Type Description
bool

Methods

Set(bool)

Selects or unselects the check box.

Declaration
void Set(bool state)
Parameters
Type Name Description
bool state

true to select.

SetFocus()

Sets focus on the checkbox.

Declaration
void SetFocus()

Extension Methods

TestObjectExtensions.WaitUntilEnabled<T>(T)
TestObjectExtensions.WaitUntilEnabled<T>(T, int)
TestObjectExtensions.WaitUntilExists<T>(T)
TestObjectExtensions.WaitUntilExists<T>(T, int)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>, int)