39 references to GetNextNode
PresentationFramework (39)
System\Windows\Documents\TextContainer.cs (17)
636TextTreeTextNode nextTextNode = ((direction == LogicalDirection.Forward) ? node.GetNextNode() : node.GetPreviousNode()) as TextTreeTextNode; 850(position.Edge == ElementEdge.BeforeStart && position.Node.GetNextNode() is TextTreeTextNode && position.Node.GetNextNode().SymbolCount > 0)); 1063formerFirstIMEVisibleNode = (TextTreeTextElementNode)elementNode.GetNextNode(); 2077for (node = firstChildNode; node != null; node = node.GetNextNode()) 2169nextNode = textNode.GetNextNode(); 2182Invariant.Assert(nextNode.GetNextNode() == null || nextNode.GetNextNode().SymbolCount > 0, "Found three consecutive zero-width text nodes! (2)"); 2214nextNode = textNode.GetNextNode(); 2445nextNode = node.GetNextNode(); 2557node = (TextTreeNode)node.GetNextNode(); 2666rightSubTree = endPosition.Node.GetNextNode(); 2679middleSubTree = leftSubTree.GetNextNode(); 2850nextNode = (TextTreeTextElementNode)elementNode.GetNextNode(); 2988nextNode = (TextTreeNode)elementNode.GetNextNode(); 3159node = (TextTreeNode)node.GetNextNode(); 3282for (textBlock = (TextTreeTextBlock)_rootNode.RootTextBlock.ContainedNode.GetMinSibling(); textBlock != null; textBlock = (TextTreeTextBlock)textBlock.GetNextNode())
System\Windows\Documents\TextElement.cs (1)
1427TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode;
System\Windows\Documents\TextPointer.cs (10)
598textNode = ((direction == LogicalDirection.Forward) ? textNode.GetNextNode() : textNode.GetPreviousNode()) as TextTreeTextNode; 1794textNode = ((direction == LogicalDirection.Forward) ? textNode.GetNextNode() : textNode.GetPreviousNode()) as TextTreeTextNode; 2249newNode = _node.GetNextNode(); 2867sibling = node.GetNextNode(); 3156endedAdjacentToTextNode = newNode.GetNextNode() is TextTreeTextNode; 3174newNode = currentNode.GetNextNode(); 3189nextNode = currentNode.GetNextNode(); 3203endedAdjacentToTextNode = newNode.GetNextNode() is TextTreeTextNode; 3458nextNode = (TextTreeNode)node.GetNextNode(); 4037newNode = node.GetNextNode();
System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (3)
233node = textNode.GetNextNode(); 261return (TextTreeNode)objectNode.GetNextNode(); 282return (TextTreeNode)elementNode.GetNextNode();
System\Windows\Documents\TextTreeDumper.cs (1)
169for (; node != null; node = node.GetNextNode())
System\Windows\Documents\TextTreeText.cs (4)
91firstBlock = (TextTreeTextBlock)firstBlock.GetNextNode(); 105firstRemoveBlock = firstBlock.GetNextNode(); 181block = (TextTreeTextBlock)block.GetNextNode(); 338neighborBlock = (TextTreeTextBlock)leftBlock.GetNextNode();
System\Windows\Documents\TextTreeTextNode.cs (3)
145mergeNode = node.GetNextNode() as TextTreeTextNode; 217nextNode = (TextTreeNode)GetNextNode(); 515nextNode = previousNode.GetNextNode() as TextTreeTextNode;