10 references to CompareTo
PresentationFramework (10)
System\Windows\Documents\FixedTextContainer.cs (3)
334
if (fixedTextPointer.
CompareTo
(((ITextContainer)this).Start) == 0)
338
else if (fixedTextPointer.
CompareTo
(((ITextContainer)this).End) == 0)
393
if (start.
CompareTo
(end) > 0)
System\Windows\Documents\FixedTextPointer.cs (1)
76
return
CompareTo
(position);
System\Windows\Documents\FixedTextView.cs (6)
636
return ((tp.
CompareTo
(this.Start) > 0 && tp.
CompareTo
(this.End) < 0) ||
637
(tp.
CompareTo
(this.Start) == 0 && (tp.LogicalDirection == LogicalDirection.Forward || this.IsContainerStart)) ||
638
(tp.
CompareTo
(this.End) == 0 && (tp.LogicalDirection == LogicalDirection.Backward || this.IsContainerEnd))
1248
return (this.Start.
CompareTo
(this.TextContainer.Start) == 0);
1256
return (this.End.
CompareTo
(this.TextContainer.End) == 0);