8 references to TextPointer
PresentationFramework (8)
src\Framework\System\Windows\Documents\TextContainer.cs (1)
462return new TextPointer(this, offset + 1, direction);
src\Framework\System\Windows\Documents\TextTreeDeleteContentUndoUnit.cs (1)
82navigator = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextTreeExtractElementUndoUnit.cs (2)
65start = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward); 66end = new TextPointer(this.TextContainer, this.SymbolOffset + _symbolCount - 2, LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextTreeInsertElementUndoUnit.cs (1)
58start = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextTreeInsertUndoUnit.cs (2)
58start = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward); 59end = new TextPointer(this.TextContainer, this.SymbolOffset + _symbolCount, LogicalDirection.Forward);
src\Framework\System\Windows\Documents\TextTreePropertyUndoUnit.cs (1)
57position = new TextPointer(this.TextContainer, this.SymbolOffset, LogicalDirection.Forward);