IUiObjectBase Interface

The base interface for all Oracle test objects.

C# Syntax

public interface IUiObjectBase : HP.LFT.SDK.IClickable, HP.LFT.SDK.ILocationInfoProvider  

Public Properties

 NameDescription
PropertyAbsoluteLocationThis object's coordinates relative to the screen (in pixels). 0,0 is the top-left corner of the (primary) monitor. (Inherited from HP.LFT.SDK.ILocationInfoProvider)
PropertyLocationThis object's coordinates relative to the parent window in pixels. (Inherited from HP.LFT.SDK.ILocationInfoProvider)
PropertyObjectType

The general object type.

C# Syntax

string ObjectType {get;}
PropertySizeThis object's size in pixels. (Inherited from HP.LFT.SDK.ILocationInfoProvider)
Top

Public Methods

 NameDescription
MethodClickClicks on this object. (Inherited from HP.LFT.SDK.IClickable)
MethodSendKey

Invokes the specified Oracle softkey.

C# Syntax

void SendKey( 
   SoftKeys key
)

Parameters

key The softkey function to perform.
Top