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