ITreeViewTable Interface
A JavaFX tree view table.
C# Syntax
public interface ITreeViewTable : HP.LFT.SDK.IClickable, HP.LFT.SDK.IDoubleClickable, HP.LFT.SDK.IEnabledProvider, HP.LFT.SDK.ILocationInfoProvider, HP.LFT.SDK.ISupportsNativeObject, HP.LFT.SDK.ITestObject, HP.LFT.SDK.ITestObjectDescriber, ITreeViewBase, ITableBase, IUiObjectBase, HP.LFT.SDK.IVisibleProvider
Name | Description | |
---|---|---|
AbsoluteLocation | This 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) | |
AttachedText | The static text attached to the object. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
BackgroundColor | The object's background color. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
ColumnHeaders | Returns the column headers. C# Syntax ReadOnlyCollection<string> ColumnHeaders {get;} | |
ColumnsCount | Returns the number of columns in the tree view table. C# Syntax int ColumnsCount {get;} | |
DisplayName | The object display name defined in the Application Model. (Inherited from HP.LFT.SDK.ITestObject) | |
ForegroundColor | The object's foreground color. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
IsEnabled | Indicates whether this object is enabled. (Inherited from HP.LFT.SDK.IEnabledProvider) | |
IsFocused | Indicates whether this object has focus. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
IsVisible | Indicates whether this object is visible. (Inherited from HP.LFT.SDK.IVisibleProvider) | |
Label | The object's label. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
Location | This object's coordinates relative to the parent window in pixels. (Inherited from HP.LFT.SDK.ILocationInfoProvider) | |
NativeClass | The object's Java class name. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
NativeObject | Returns the native application object that is represented by this test object instance, enabling you to access the native properties and methods provided by that object. (Inherited from HP.LFT.SDK.ISupportsNativeObject) | |
ObjectName | The object's internal name. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
Parent | The parent test object of this test object. The child object must be obtained using the Describe method, otherwise, it returns null. (Inherited from HP.LFT.SDK.ITestObject) | |
Path | The object's hierarchy (object ancestors). (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
RowsCount | Returns the number of rows in the tree view table. C# Syntax int RowsCount {get;} | |
SelectedNodes | Returns the selected nodes in the tree view table. C# Syntax ReadOnlyList<ITreeViewTableRow> SelectedNodes {get;} | |
Size | This object's size in pixels. (Inherited from HP.LFT.SDK.ILocationInfoProvider) | |
TagName | The object's Java name. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) |
Name | Description | |
---|---|---|
Activate | Activates a node or row in the tree view table. void Activate( string nodePath ) Parameters
| |
ActivateCell | Overloaded. Double-clicks a cell by row and column indexes. (Inherited from HP.LFT.SDK.Java.ITableBase) | |
ActivateColumn | Overloaded. Double-clicks a column by column index. (Inherited from HP.LFT.SDK.Java.ITableBase) | |
BuildNodePath | Returns the path of a node in the tree table. (Inherited from HP.LFT.SDK.Java.ITreeViewBase) | |
Click | Clicks on this object. (Inherited from HP.LFT.SDK.IClickable) | |
Collapse | Overloaded. Collapses an expandable node in the tree view table. | |
CreateObject | Creates a native object wrapping an instance of a Java object within your application. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
Describe<TChild> | Creates a child test object of this test object. (Inherited from HP.LFT.SDK.ITestObjectDescriber) | |
Deselect | Clears the selection of nodes in the tree view table. C# Syntax | |
Deselect(String[]) | Clears the selection of nodes in the tree table by node paths. (Inherited from HP.LFT.SDK.Java.ITreeViewBase) | |
DeselectColumn | Overloaded. Clears the selection of a column in the tree view table. | |
DeselectRowsRange | Clears the selection of the specified range of rows in a tree view table. C# Syntax void DeselectRowsRange( ITreeViewTableRow fromRow, ITreeViewTableRowtoRow ) Parameters
| |
DeselectRowsRange | Clears the selection of a range of rows by rows indexes. (Inherited from HP.LFT.SDK.Java.ITableBase) | |
DoubleClick | Double-clicks on this object using the specified MouseButton. (Inherited from HP.LFT.SDK.IDoubleClickable) | |
Exists | Checks whether this object exists in the AUT before the default object synchronization timeout elapses. (Inherited from HP.LFT.SDK.ITestObject) | |
Expand | Overloaded. Expands an expandable node in the tree view table. | |
ExtendSelect | Selects additional nodes in the tree view table. C# Syntax void ExtendSelect( params ITreeViewTableRow[] nodes ) Parameters
The nodes to add to the selection. | |
ExtendSelect(String[]) | Selects additional nodes in the tree table by node paths. (Inherited from HP.LFT.SDK.Java.ITreeViewBase) | |
FindChildren<TChild> | Returns all the child test objects that match the specified test object type and description filter. For example, you can use this method to retrieve all Web buttons on a Page with type="submit". (Inherited from HP.LFT.SDK.ITestObject) | |
FireEvent | Triggers an event on the test object. Note: use the EventInfoFactory class to generate the eventInfo argument value. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
GetDescription | Returns a clone of the description for this test object. The test object must be obtained using the Describe method, otherwise, this method returns null. (Inherited from HP.LFT.SDK.ITestObject) | |
GetObjectProperty<TValue> | Returns the value of a test object property. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
GetNode | Returns the value of the specified node. C# Syntax ITreeViewTableRow GetNode( int index ) Parameters
| |
GetSnapshot | Captures a bitmap of this test object and returns a System.Drawing.Image of it. (Inherited from HP.LFT.SDK.ITestObject) | |
GetStatics | Gets a native object wrapping a Java class capable of accessing static members (methods and fields) of the specified Java class. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
GetTextLocations | Returns all rectangle areas containing the specified text within this object (Windows only). (Inherited from HP.LFT.SDK.ITestObject) | |
GetVisibleText | Returns all visible text from this object. (Inherited from HP.LFT.SDK.ITestObject) | |
Highlight | Highlights this object in the AUT. (Inherited from HP.LFT.SDK.ITestObject) | |
HighlightMatches<TChild> | Highlights all children that match the specified test object type and description filter. (Inherited from HP.LFT.SDK.ITestObject) | |
Select | Selects the specified nodes in the tree view table. C# Syntax void Select( params ITreeViewTableRow[] nodes ) Parameters
| |
Select(String[]) | Selects the specified nodes in the tree view table by nodes paths. (Inherited from HP.LFT.SDK.Java.ITreeViewBase) | |
SelectCell | Overloaded. Clicks a cell by row and column indexes. (Inherited from HP.LFT.SDK.Java.ITableBase) | |
SelectCellRange | Overloaded. Selects a range of cells in a table by rows and columns indexes. (Inherited from HP.LFT.SDK.Java.ITableBase) | |
SelectColumn | Overloaded. Selects a specified column in the tree view table. | |
SelectColumnsRange | Overloaded. Selects a range of columns by column indexes. (Inherited from HP.LFT.SDK.Java.ITableBase) | |
SelectRange | Selects the specified range of nodes in the tree view table. C# Syntax void SelectRange( ITreeViewTableRow fromNode, ITreeViewTableRow toNode ) Parameters
| |
SelectRange(String[]) | Selects the specified range of nodes in the tree view table. Tip: Use the BuildNodePath method to build the node path strings to be used as the fromNodePath and toNodePath arguments for this method. (Inherited from HP.LFT.SDK.Java.ITreeViewBase) | |
SelectRowsRange | Selects the specified range of rows in a tree view table. C# Syntax void SelectRowsRange( ITreeViewTableRow fromRow, ITreeViewTableRow toRow ) Parameters
| |
SelectRowsRange | Selects a range of rows by indexes. (Inherited from HP.LFT.SDK.Java.ITableBase) | |
SendKeys | Types the specified string into the test object in the application, including special keys or key modifiers. (Inherited from HP.LFT.SDK.Java.IUiObjectBase) | |
SetDescription | Replaces this test object's description with the supplied description. (Inherited from HP.LFT.SDK.ITestObject) | |
VerifyImageExists | Checks whether a snapshot of this object contains the supplied image. (Inherited from HP.LFT.SDK.ITestObject) | |
VerifyImageMatch | Checks whether a snapshot of this object and the supplied image are a match, given the specified pixel and RGB tolerance values. (Inherited from HP.LFT.SDK.ITestObject) |