19 references to End
PresentationFramework (19)
src\Framework\MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (1)
393end = textAnchor.End;
src\Framework\MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (2)
274ITextPointer currentEnd = anchor.End; 304if (anchor.End.CompareTo(currentEnd) != 0)
src\Framework\MS\Internal\Annotations\Component\AnnotationHighlightLayer.cs (7)
82ITextPointer end = highlightRange.Range.End; 126if (highlightRange.Range.Start.CompareTo(highlightRange.Range.End) == 0) 131GetSpannedSegments(highlightRange.Range.Start, highlightRange.Range.End, out startSeg, out endSeg); 170if (highlightRange.Range.Start.CompareTo(highlightRange.Range.End) == 0) 175GetSpannedSegments(highlightRange.Range.Start, highlightRange.Range.End, out startSeg, out endSeg); 206if (highlightRange.Range.Start.CompareTo(highlightRange.Range.End) == 0) 211GetSpannedSegments(highlightRange.Range.Start, highlightRange.Range.End, out startSeg, out endSeg);
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (3)
683ITextPointer end = anchor.End.CreatePointer(LogicalDirection.Backward); 1140res = firstAnchor.End.CompareTo(secondAnchor.End);
src\Framework\MS\Internal\Annotations\TextAnchor.cs (2)
125else if (textPointer.CompareTo(this.End) > 0) 496return End as ContentPosition;
src\Framework\System\Windows\Annotations\AnnotationHelper.cs (4)
852if (((selection.Start.CompareTo(anchor.Start) > 0) && (selection.Start.CompareTo(anchor.End) < 0)) || 853((selection.End.CompareTo(anchor.Start) > 0) && (selection.End.CompareTo(anchor.End) < 0)) || 854((selection.Start.CompareTo(anchor.Start) <= 0) && (selection.End.CompareTo(anchor.End) >= 0)) || 878((anchor.End.CompareTo(selection.End) == 0) &&