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)
2309lineRange = new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 2490positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 2510positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 2522positionOut = lines[lines.Count - 1].StartPosition.CreatePointer(LogicalDirection.Forward); 2969positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 2984positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 2996positionOut = 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;