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