Interface ITreeNodeDynastyProvider
Implementations should provide the list of a tree node's dynasty (all its parents plus the node itself).
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public interface ITreeNodeDynastyProvider
Methods
View SourceGetTreeNodeDynasty(object)
Returns a list of all tree node's parents plus the node itself. The root parent has index 0, the last item in the list is the node itself.
Declaration
IList GetTreeNodeDynasty(object node)
Parameters
Type | Name | Description |
---|---|---|
object | node | The tree node for which a dynasty is returned. |
Returns
Type | Description |
---|---|
IList | The dynasty for the specified node. |