GetChildNodes

StructuredDocumentTagRangeStart.GetChildNodes method

Возвращает живую коллекцию дочерних узлов, соответствующих указанным типам.

public NodeCollection GetChildNodes(NodeType nodeType, bool isDeep)

Примеры

Показывает, как получить дочерние узлы StructuredDocumentTagRangeStart.

Document doc = new Document(MyDir + "Multi-section structured document tags.docx");
StructuredDocumentTagRangeStart tag =
    doc.GetChildNodes(NodeType.StructuredDocumentTagRangeStart, true)[0] as StructuredDocumentTagRangeStart;

Console.WriteLine("StructuredDocumentTagRangeStart values:");
Console.WriteLine($"\t|Child nodes count: {tag.GetChildNodes(NodeType.Any, false).Count}\n");

foreach (Node node in tag.GetChildNodes(NodeType.Any, false))
    Console.WriteLine($"\t|Child node type: {node.NodeType}");

foreach (Node node in tag.GetChildNodes(NodeType.Run, true))
    Console.WriteLine($"\t|Child node text: {node.GetText()}");

Смотрите также