16 references to TextSegment
PresentationFramework (16)
MS\Internal\Documents\TextBoxView.cs (2)
989return new TextSegment(start, end, true); 1310segments.Add(new TextSegment(start, end, true));
MS\Internal\Documents\TextContainerHelper.cs (2)
94segments.Add(new TextSegment( 104segments.Add(new TextSegment(
MS\Internal\Documents\TextDocumentView.cs (3)
2339lineRange = new TextSegment(((TextParagraphResult)paragraph).EndPosition, ((TextParagraphResult)paragraph).EndPosition, true); 2346lineRange = new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 3293segments.Add(new TextSegment(_textContainer.Start, segmentEnd, true));
MS\Internal\Documents\TextParagraphView.cs (2)
279return new TextSegment(lines[lineIndex].StartPosition, lines[lineIndex].GetContentEndPosition(), true); 486segments.Add(new TextSegment(_textContainer.Start, _textContainer.End, true));
System\Windows\Controls\TextAdaptor.cs (1)
544visibleTextSegments.Add(new TextSegment(visibleStart, visibleEnd, true));
System\Windows\Documents\DocumentSequenceTextView.cs (2)
378return new TextSegment(tpStart, tpEnd, true); 569parentSegments.Add(new TextSegment(ptpStart, ptpEnd,true));
System\Windows\Documents\FixedTextView.cs (3)
597 return new TextSegment(position, position, true); 628return new TextSegment(begin, end, true); 732list.Add(new TextSegment(this.Start, this.End, true));
System\windows\Documents\TextSegment.cs (1)
45this(startPosition, endPosition, false)