2 overrides of StartPosition
PresentationFramework (2)
MS\Internal\PtsHost\TextParaLineResult.cs (1)
170internal override ITextPointer StartPosition
MS\Internal\Text\TextLineResult.cs (1)
168internal override ITextPointer StartPosition
10 references to StartPosition
PresentationFramework (10)
MS\Internal\Documents\TextDocumentView.cs (7)
2346lineRange = new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 2530positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 2550positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 2562positionOut = lines[lines.Count - 1].StartPosition.CreatePointer(LogicalDirection.Forward); 3012positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 3027positionOut = lines[0].StartPosition.CreatePointer(LogicalDirection.Forward); 3039positionOut = lines[lines.Count - 1].StartPosition.CreatePointer(LogicalDirection.Forward);
MS\Internal\Documents\TextParagraphView.cs (3)
184positionOut = lines[lineIndex].StartPosition.CreatePointer(LogicalDirection.Forward); 279return new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 367int dcp = lines[0].StartPosition.GetOffsetToPosition(position) + lines[0].StartPositionCP;