37 references to GetNextNode
PresentationFramework (37)
src\Framework\System\Windows\Documents\TextContainer.cs (17)
656TextTreeTextNode nextTextNode = ((direction == LogicalDirection.Forward) ? node.GetNextNode() : node.GetPreviousNode()) as TextTreeTextNode; 870(position.Edge == ElementEdge.BeforeStart && position.Node.GetNextNode() is TextTreeTextNode && position.Node.GetNextNode().SymbolCount > 0)); 1083formerFirstIMEVisibleNode = (TextTreeTextElementNode)elementNode.GetNextNode(); 2097for (node = firstChildNode; node != null; node = node.GetNextNode()) 2189nextNode = textNode.GetNextNode(); 2202Invariant.Assert(nextNode.GetNextNode() == null || nextNode.GetNextNode().SymbolCount > 0, "Found three consecutive zero-width text nodes! (2)"); 2234nextNode = textNode.GetNextNode(); 2465nextNode = node.GetNextNode(); 2577node = (TextTreeNode)node.GetNextNode(); 2686rightSubTree = endPosition.Node.GetNextNode(); 2699middleSubTree = leftSubTree.GetNextNode(); 2870nextNode = (TextTreeTextElementNode)elementNode.GetNextNode(); 3009nextNode = (TextTreeNode)elementNode.GetNextNode(); 3180node = (TextTreeNode)node.GetNextNode(); 3303for (textBlock = (TextTreeTextBlock)_rootNode.RootTextBlock.ContainedNode.GetMinSibling(); textBlock != null; textBlock = (TextTreeTextBlock)textBlock.GetNextNode())
src\Framework\System\Windows\Documents\TextElement.cs (1)
1473TextTreeTextElementNode node = _textElementNode.GetNextNode() as TextTreeTextElementNode;
src\Framework\System\Windows\Documents\TextPointer.cs (10)
614textNode = ((direction == LogicalDirection.Forward) ? textNode.GetNextNode() : textNode.GetPreviousNode()) as TextTreeTextNode; 1816textNode = ((direction == LogicalDirection.Forward) ? textNode.GetNextNode() : textNode.GetPreviousNode()) as TextTreeTextNode; 2274newNode = _node.GetNextNode(); 2898sibling = node.GetNextNode(); 3187endedAdjacentToTextNode = newNode.GetNextNode() is TextTreeTextNode; 3205newNode = currentNode.GetNextNode(); 3220nextNode = currentNode.GetNextNode(); 3234endedAdjacentToTextNode = newNode.GetNextNode() is TextTreeTextNode; 3489nextNode = (TextTreeNode)node.GetNextNode(); 4068newNode = node.GetNextNode();
src\Framework\System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (3)
241node = textNode.GetNextNode(); 285return (TextTreeNode)objectNode.GetNextNode(); 307return (TextTreeNode)elementNode.GetNextNode();
src\Framework\System\Windows\Documents\TextTreeText.cs (4)
98firstBlock = (TextTreeTextBlock)firstBlock.GetNextNode(); 112firstRemoveBlock = firstBlock.GetNextNode(); 188block = (TextTreeTextBlock)block.GetNextNode(); 345neighborBlock = (TextTreeTextBlock)leftBlock.GetNextNode();
src\Framework\System\Windows\Documents\TextTreeTextNode.cs (2)
152mergeNode = node.GetNextNode() as TextTreeTextNode; 522nextNode = previousNode.GetNextNode() as TextTreeTextNode;