IUiObjectBase Interface
Base interface for all PowerBuilder test objects.
C# Syntax
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)
PropertyAttachedText

The static text attached to the object.

C# Syntax

string AttachedText {get;}
PropertyIsEnabledIndicates whether this object is enabled. (Inherited from HP.LFT.SDK.IEnabledProvider)
PropertyIsVisibleIndicates whether this object is currently visible. (Inherited from HP.LFT.SDK.IVisibleProvider)
PropertyLocationThis object's coordinates relative to the parent window in pixels. (Inherited from HP.LFT.SDK.ILocationInfoProvider)
PropertyObjectName

The object's name as set by the developer.

C# Syntax

string ObjectName {get;}
PropertyText

The text associated with the object.

C# Syntax

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

The permanent part of the MFC window class.

C# Syntax

string WindowClassRegExp {get;}
PropertyWindowExtendedStyle

The extended window style of the object. Possible values: HP.LFT.SDK.WindowExtendedStyles

C# Syntax

WindowExtendedStyles WindowExtendedStyle {get;}
PropertyWindowId

The window identifier for the object.

C# Syntax

int WindowId {get;}
PropertyWindowStyle

The window style of the object. Possible values: HP.LFT.SDK.WindowStyles

C# Syntax

WindowStyles WindowStyle {get;}
Top
Public Methods
 NameDescription
MethodClickClicks on this object. (Inherited from HP.LFT.SDK.IClickable)
MethodDoubleClickDouble-clicks on this object using the specified MouseButton. (Inherited from HP.LFT.SDK.IDoubleClickable)
MethodDragAndDropOnDrags and drops a test object to the specified target object. (Inherited from HP.LFT.SDK.ISupportDragAndDrop)
MethodMouseMoveMoves the mouse pointer to the specified position inside this object. (Inherited from HP.LFT.SDK.IUiObjectBase)
MethodSendKeysTypes the specified string into the object in the application, including special keys or key modifiers. (Inherited from HP.LFT.SDK.ISupportSendKeys)
Top