9 references to StaticTextPointer
PresentationFramework (9)
src\Framework\System\Windows\Documents\StaticTextPointer.cs (2)
29internal StaticTextPointer(ITextContainer textContainer, object handle0) : this(textContainer, handle0, 0) 204internal static StaticTextPointer Null = new StaticTextPointer(null, null, 0);
src\Framework\System\Windows\Documents\TextContainer.cs (2)
512return new StaticTextPointer(this, node, nodeOffset); 678nextContextPosition = new StaticTextPointer(this, node, node.GetOffsetFromEdge(edge));
src\Framework\System\Windows\Documents\TextElement.cs (4)
347return new StaticTextPointer(tree, _textElementNode, 0); 380return new StaticTextPointer(tree, _textElementNode, 1); 413return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 454return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount);
src\Framework\System\Windows\Documents\TextPointer.cs (1)
2598return new StaticTextPointer(_tree, _node, _node.GetOffsetFromEdge(this.Edge));