2 overrides of StartPosition
PresentationFramework (2)
src\Framework\MS\Internal\PtsHost\TextParaLineResult.cs (1)
175internal override ITextPointer StartPosition
src\Framework\MS\Internal\Text\TextLineResult.cs (1)
173internal override ITextPointer StartPosition
10 references to StartPosition
PresentationFramework (10)
src\Framework\MS\Internal\Documents\TextDocumentView.cs (7)
2354lineRange = new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 2538positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 2558positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 2570positionOut = lines[lines.Count - 1].StartPosition.CreatePointer(LogicalDirection.Forward); 3021positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 3036positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 3048positionOut = lines[lines.Count - 1].StartPosition.CreatePointer(LogicalDirection.Forward);
src\Framework\MS\Internal\Documents\TextParagraphView.cs (3)
203positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 301return new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 392int dcp = lines[0].StartPosition.GetOffsetToPosition(position) + lines[0].StartPositionCP;