Package com.hp.lft.sdk.wpf
Interface TreeViewNode
- All Superinterfaces:
SupportDragAndDrop
A single tree view node in a .NET WPF tree-view object.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
collapse()
Hides this node's sub-nodes in the expanded tree-view control.void
expand()
Displays this node's hidden sub-nodes in the tree-view control.void
Expands 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.int
getState()
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.boolean
Indicates whether this node has children.boolean
Indicates whether this node is expanded.boolean
Indicates whether this node is selected.Methods inherited from interface com.hp.lft.sdk.SupportDragAndDrop
dragAndDropOn, dragAndDropOn
-
Method Details
-
isExpanded
Indicates whether this node is expanded.- Returns:
- true if expanded
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getFirstChildPath
Returns 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
-
hasChildren
Indicates whether this node has children.- Returns:
- true if has children
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getNextSiblingPath
Returns 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
-
getParentPath
Returns 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
-
getPath
Returns 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
-
isSelected
Indicates whether this node is selected.- Returns:
- true if selected
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getState
Returns the state image index of this node.- Returns:
- the state image index
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getText
Returns 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
-
collapse
Hides this node's sub-nodes in the expanded tree-view control.- Throws:
GeneralLeanFtException
- if error occurs during execution
-
expand
Displays this node's hidden sub-nodes in the tree-view control.- Throws:
GeneralLeanFtException
- if error occurs during execution
-
expandAll
Expands this node and all of the nodes below it in the tree-view control.- Throws:
GeneralLeanFtException
- if error occurs during execution
-