Table of Contents

Interface ITreeViewNode

Namespace
HP.LFT.SDK.SAP.GUI
Assembly
HP.LFT.SDK.dll

A tree node of a SAP GUI tree object.

public interface ITreeViewNode

Properties

Path

The full path of the node as a semi-colon delimited string.

string Path { get; }

Property Value

string

Methods

ActivateItem(string)

Activates an item in this node of a SAP column tree or list tree, by item text.

void ActivateItem(string item)

Parameters

item string

The text.

ActivateItem(uint)

Activates an item in this node of a SAP column tree or list tree, by item index.

void ActivateItem(uint itemIndex)

Parameters

itemIndex uint

1-based.

ClickButton(string)

Clicks the specified button item in this node of a SAP column tree or list tree, by button text.

void ClickButton(string item)

Parameters

item string

The button text.

ClickButton(uint)

Clicks the specified button item in this node of a SAP column tree or list tree, by index.

void ClickButton(uint itemIndex)

Parameters

itemIndex uint

The 1-based button index.

Clicks a link item in this node of a SAP column tree or list tree, by link text.

void ClickLink(string item)

Parameters

item string

The text.

Clicks a link item in this node of a SAP column tree or list tree, by link index.

void ClickLink(uint itemIndex)

Parameters

itemIndex uint

1-based.

Collapse()

Hides this node's sub-nodes in the expanded tree object.

void Collapse()

Expand()

Displays this node's sub-nodes in the tree object.

void Expand()

OpenContextMenu()

Opens the context menu for this node of a SAP simple tree.

void OpenContextMenu()

OpenItemContextMenu(string)

Opens the context menu for the specified item in this node of a SAP column tree or list tree.

void OpenItemContextMenu(string item)

Parameters

item string

The text of the item.

Select(string)

Selects an item in this node of a SAP column tree or list tree, by item text.

void Select(string item)

Parameters

item string

The text of the item.

Select(uint)

Selects an item in this node of a SAP column tree or list tree, by item index.

void Select(uint itemIndex)

Parameters

itemIndex uint

1-based.

SetCheckBoxState(string, bool)

Selects or unselects a check box item for this node of a SAP column tree or list tree, by checkbox text.

void SetCheckBoxState(string item, bool state)

Parameters

item string

The text of the check box.

state bool

True to select.

SetCheckBoxState(uint, bool)

Selects or unselects a check box item for this node of a SAP column tree or list tree, by checkbox index.

void SetCheckBoxState(uint itemIndex, bool state)

Parameters

itemIndex uint

1-based.

state bool

True to select.