Interface ITreeViewNode
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
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
itemstringThe 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
itemIndexuint1-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
itemstringThe 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
itemIndexuintThe 1-based button index.
ClickLink(string)
Clicks a link item in this node of a SAP column tree or list tree, by link text.
void ClickLink(string item)
Parameters
itemstringThe text.
ClickLink(uint)
Clicks a link item in this node of a SAP column tree or list tree, by link index.
void ClickLink(uint itemIndex)
Parameters
itemIndexuint1-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
itemstringThe 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
itemstringThe 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
itemIndexuint1-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
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)