10 references to CompareTo
PresentationFramework (10)
System\Windows\Documents\FixedTextContainer.cs (3)
343
if (fixedTextPointer.
CompareTo
(((ITextContainer)this).Start) == 0)
347
else if (fixedTextPointer.
CompareTo
(((ITextContainer)this).End) == 0)
402
if (start.
CompareTo
(end) > 0)
System\Windows\Documents\FixedTextPointer.cs (1)
79
return
CompareTo
(position);
System\Windows\Documents\FixedTextView.cs (6)
642
return ((tp.
CompareTo
(this.Start) > 0 && tp.
CompareTo
(this.End) < 0) ||
643
(tp.
CompareTo
(this.Start) == 0 && (tp.LogicalDirection == LogicalDirection.Forward || this.IsContainerStart)) ||
644
(tp.
CompareTo
(this.End) == 0 && (tp.LogicalDirection == LogicalDirection.Backward || this.IsContainerEnd))
1260
return (this.Start.
CompareTo
(this.TextContainer.Start) == 0);
1268
return (this.End.
CompareTo
(this.TextContainer.End) == 0);