9 references to StaticTextPointer
PresentationFramework (9)
System\Windows\Documents\StaticTextPointer.cs (2)
23internal StaticTextPointer(ITextContainer textContainer, object handle0) : this(textContainer, handle0, 0) 198internal static StaticTextPointer Null = new StaticTextPointer(null, null, 0);
System\Windows\Documents\TextContainer.cs (2)
492return new StaticTextPointer(this, node, nodeOffset); 658nextContextPosition = new StaticTextPointer(this, node, node.GetOffsetFromEdge(edge));
System\Windows\Documents\TextElement.cs (4)
341return new StaticTextPointer(tree, _textElementNode, 0); 374return new StaticTextPointer(tree, _textElementNode, 1); 407return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount - 1); 448return new StaticTextPointer(tree, _textElementNode, _textElementNode.SymbolCount);
System\Windows\Documents\TextPointer.cs (1)
2567return new StaticTextPointer(_tree, _node, _node.GetOffsetFromEdge(this.Edge));