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