17 references to GetScopingNode
PresentationFramework (17)
src\Framework\System\Windows\Documents\TextContainer.cs (7)
1252containingNode = startPosition.GetScopingNode(); 2291containingNode = startPosition.GetScopingNode(); 2450Invariant.Assert(startPosition.GetScopingNode() == endPosition.GetScopingNode(), "startPosition/endPosition not in same sibling tree!"); 2643Invariant.Assert(startPosition.GetScopingNode() == endPosition.GetScopingNode(), "startPosition/endPosition not in same sibling tree!"); 2695middleSubTree = startPosition.GetScopingNode().ContainedNode;
src\Framework\System\Windows\Documents\TextElement.cs (2)
119SplayTreeNode startNode = start.GetScopingNode(); 123SplayTreeNode endNode = end.GetScopingNode();
src\Framework\System\Windows\Documents\TextPointer.cs (6)
596Invariant.Assert(this.GetScopingNode() is TextTreeRootNode); 2464parent1 = GetScopingNode(); 2465parent2 = textPointer.GetScopingNode(); 2659TextTreeNode scopingNode = GetScopingNode(); 2973return GetScopingNode().GetLogicalTreeNode(); 4094return GetScopingNode().GetDependencyParent();
src\Framework\System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (2)
46Invariant.Assert(start.GetScopingNode() == end.GetScopingNode(), "start/end have different scope!");