Returns true if this StarDiagramNode is higher up in the star diagram parent hierachy than the given node. That is, this method returns true if the given node is a child or sub-child of this node. Returns false otherwise.

Namespace:  Mindscape.WpfDiagramming.StarDiagrams
Assembly:  Mindscape.WpfDiagramming.StarDiagrams (in Mindscape.WpfDiagramming.StarDiagrams.dll)
Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public bool IsAncestorOf(
	StarDiagramNode node
)
Visual Basic (Declaration)
Public Function IsAncestorOf ( _
	node As StarDiagramNode _
) As Boolean

Parameters

node
Type: Mindscape.WpfDiagramming.StarDiagrams..::.StarDiagramNode
A StarDiagramNode that may or may not be a child of this node.

Return Value

True if this node is an ancestor of the given node. False otherwise.

See Also