Package com.hp.lft.sdk.wpf
Interface TreeViewNode
- All Superinterfaces:
- SupportDragAndDrop
A single tree view node in a .NET WPF tree-view object.
- 
Method SummaryModifier and TypeMethodDescriptionvoidcollapse()Hides this node's sub-nodes in the expanded tree-view control.voidexpand()Displays this node's hidden sub-nodes in the tree-view control.voidExpands this node and all of the nodes below it in the tree-view control.Returns the full path of this node's first child node as a semicolon delimited string.Returns the full path of this node's next sibling node as a semicolon delimited string.Returns the full path of this node's parent node as a semicolon delimited string.getPath()Returns the full path of this node as a semicolon delimited string.intgetState()Returns the state image index of this node.getText()Returns the text of this node, or an empty string ("") if the node does not contain any text.booleanIndicates whether this node has children.booleanIndicates whether this node is expanded.booleanIndicates whether this node is selected.Methods inherited from interface com.hp.lft.sdk.SupportDragAndDropdragAndDropOn, dragAndDropOn
- 
Method Details- 
isExpandedIndicates whether this node is expanded.- Returns:
- true if expanded
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getFirstChildPathReturns the full path of this node's first child node as a semicolon delimited string.- Returns:
- the full path of this node's first child node
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
hasChildrenIndicates whether this node has children.- Returns:
- true if has children
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getNextSiblingPathReturns the full path of this node's next sibling node as a semicolon delimited string.- Returns:
- the full path of this node's next sibling node
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getParentPathReturns the full path of this node's parent node as a semicolon delimited string.- Returns:
- the full path of this node's parent node
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getPathReturns the full path of this node as a semicolon delimited string.- Returns:
- the full path of this node
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
isSelectedIndicates whether this node is selected.- Returns:
- true if selected
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getStateReturns the state image index of this node.- Returns:
- the state image index
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getTextReturns the text of this node, or an empty string ("") if the node does not contain any text.- Returns:
- the text
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
collapseHides this node's sub-nodes in the expanded tree-view control.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
expandDisplays this node's hidden sub-nodes in the tree-view control.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
expandAllExpands this node and all of the nodes below it in the tree-view control.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-