19 references to End
PresentationFramework (19)
MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (1)
383
end = textAnchor.
End
;
MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (2)
261
ITextPointer currentEnd = anchor.
End
;
291
if (anchor.
End
.CompareTo(currentEnd) != 0)
MS\Internal\Annotations\Component\AnnotationHighlightLayer.cs (7)
78
ITextPointer end = highlightRange.Range.
End
;
121
if (highlightRange.Range.Start.CompareTo(highlightRange.Range.
End
) == 0)
126
GetSpannedSegments(highlightRange.Range.Start, highlightRange.Range.
End
, out startSeg, out endSeg);
165
if (highlightRange.Range.Start.CompareTo(highlightRange.Range.
End
) == 0)
170
GetSpannedSegments(highlightRange.Range.Start, highlightRange.Range.
End
, out startSeg, out endSeg);
200
if (highlightRange.Range.Start.CompareTo(highlightRange.Range.
End
) == 0)
205
GetSpannedSegments(highlightRange.Range.Start, highlightRange.Range.
End
, out startSeg, out endSeg);
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (3)
662
ITextPointer end = anchor.
End
.CreatePointer(LogicalDirection.Backward);
1117
res = firstAnchor.
End
.CompareTo(secondAnchor.
End
);
MS\Internal\Annotations\TextAnchor.cs (2)
119
else if (textPointer.CompareTo(this.
End
) > 0)
489
return
End
as ContentPosition;
System\Windows\Annotations\AnnotationHelper.cs (4)
845
if (((selection.Start.CompareTo(anchor.Start) > 0) && (selection.Start.CompareTo(anchor.
End
) < 0)) ||
846
((selection.End.CompareTo(anchor.Start) > 0) && (selection.End.CompareTo(anchor.
End
) < 0)) ||
847
((selection.Start.CompareTo(anchor.Start) <= 0) && (selection.End.CompareTo(anchor.
End
) >= 0)) ||
871
((anchor.
End
.CompareTo(selection.End) == 0) &&