Member Nodes (Children)

If the selected part is a Group, the highlit collection will include all Nodes whose immediate parent is the selected Group.  In code, this highlighting is done as follows:

foreach (Node child in myDiagram.SelectedGroup.MemberNodes) {
  ((NavModelNodeData)child.Data).Highlight = 1;
}

  Such member nodes may themselves be Groups.