9 references to StaticTextPointer
PresentationFramework (9)
System\Windows\Documents\StaticTextPointer.cs (2)
27internal StaticTextPointer(ITextContainer textContainer, object handle0) : this(textContainer, handle0, 0) 202internal static StaticTextPointer Null = new StaticTextPointer(null, null, 0);
System\Windows\Documents\TextContainer.cs (2)
497return new StaticTextPointer(this, node, nodeOffset); 663nextContextPosition = new StaticTextPointer(this, node, node.GetOffsetFromEdge(edge));
System\Windows\Documents\TextElement.cs (4)
342return new StaticTextPointer(tree, _textElementNode, 0); 375return new StaticTextPointer(tree, _textElementNode, 1); 408return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 449return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount);
System\Windows\Documents\TextPointer.cs (1)
2572return new StaticTextPointer(_tree, _node, _node.GetOffsetFromEdge(this.Edge));