39 references to GetNextNode
PresentationFramework (39)
System\Windows\Documents\TextContainer.cs (17)
635
TextTreeTextNode nextTextNode = ((direction == LogicalDirection.Forward) ? node.
GetNextNode
() : node.GetPreviousNode()) as TextTreeTextNode;
849
(position.Edge == ElementEdge.BeforeStart && position.Node.
GetNextNode
() is TextTreeTextNode && position.Node.
GetNextNode
().SymbolCount > 0));
1059
formerFirstIMEVisibleNode = (TextTreeTextElementNode)elementNode.
GetNextNode
();
2070
for (node = firstChildNode; node != null; node = node.
GetNextNode
())
2156
nextNode = textNode.
GetNextNode
();
2169
Invariant.Assert(nextNode.
GetNextNode
() == null || nextNode.
GetNextNode
().SymbolCount > 0, "Found three consecutive zero-width text nodes! (2)");
2201
nextNode = textNode.
GetNextNode
();
2423
nextNode = node.
GetNextNode
();
2535
node = (TextTreeNode)node.
GetNextNode
();
2644
rightSubTree = endPosition.Node.
GetNextNode
();
2657
middleSubTree = leftSubTree.
GetNextNode
();
2825
nextNode = (TextTreeTextElementNode)elementNode.
GetNextNode
();
2960
nextNode = (TextTreeNode)elementNode.
GetNextNode
();
3131
node = (TextTreeNode)node.
GetNextNode
();
3254
for (textBlock = (TextTreeTextBlock)_rootNode.RootTextBlock.ContainedNode.GetMinSibling(); textBlock != null; textBlock = (TextTreeTextBlock)textBlock.
GetNextNode
())
System\Windows\Documents\TextElement.cs (1)
1409
TextTreeTextElementNode node = _textElementNode.
GetNextNode
() as TextTreeTextElementNode;
System\Windows\Documents\TextPointer.cs (10)
597
textNode = ((direction == LogicalDirection.Forward) ? textNode.
GetNextNode
() : textNode.GetPreviousNode()) as TextTreeTextNode;
1793
textNode = ((direction == LogicalDirection.Forward) ? textNode.
GetNextNode
() : textNode.GetPreviousNode()) as TextTreeTextNode;
2248
newNode = _node.
GetNextNode
();
2866
sibling = node.
GetNextNode
();
3155
endedAdjacentToTextNode = newNode.
GetNextNode
() is TextTreeTextNode;
3173
newNode = currentNode.
GetNextNode
();
3188
nextNode = currentNode.
GetNextNode
();
3202
endedAdjacentToTextNode = newNode.
GetNextNode
() is TextTreeTextNode;
3457
nextNode = (TextTreeNode)node.
GetNextNode
();
4036
newNode = node.
GetNextNode
();
System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (3)
232
node = textNode.
GetNextNode
();
260
return (TextTreeNode)objectNode.
GetNextNode
();
281
return (TextTreeNode)elementNode.
GetNextNode
();
System\Windows\Documents\TextTreeDumper.cs (1)
168
for (; node != null; node = node.
GetNextNode
())
System\Windows\Documents\TextTreeText.cs (4)
90
firstBlock = (TextTreeTextBlock)firstBlock.
GetNextNode
();
104
firstRemoveBlock = firstBlock.
GetNextNode
();
180
block = (TextTreeTextBlock)block.
GetNextNode
();
337
neighborBlock = (TextTreeTextBlock)leftBlock.
GetNextNode
();
System\Windows\Documents\TextTreeTextNode.cs (3)
146
mergeNode = node.
GetNextNode
() as TextTreeTextNode;
218
nextNode = (TextTreeNode)
GetNextNode
();
518
nextNode = previousNode.
GetNextNode
() as TextTreeTextNode;