2 overrides of StartPosition
PresentationFramework (2)
MS\Internal\PtsHost\TextParaLineResult.cs (1)
167internal override ITextPointer StartPosition
MS\Internal\Text\TextLineResult.cs (1)
164internal override ITextPointer StartPosition
10 references to StartPosition
PresentationFramework (10)
MS\Internal\Documents\TextDocumentView.cs (7)
2318lineRange = new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 2499positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 2519positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 2531positionOut = lines[lines.Count - 1].StartPosition.CreatePointer(LogicalDirection.Forward); 2978positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 2993positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 3005positionOut = lines[lines.Count - 1].StartPosition.CreatePointer(LogicalDirection.Forward);
MS\Internal\Documents\TextParagraphView.cs (3)
178positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 273return new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 361int dcp = lines[0].StartPosition.GetOffsetToPosition(position) + lines[0].StartPositionCP;