29 references to Start
PresentationFramework (29)
src\Framework\MS\Internal\Annotations\Anchoring\FixedTextSelectionProcessor.cs (3)
467start = anchor.Start; 496if (anchor == null || !(anchor.Start.TextContainer is FixedTextContainer || 497anchor.Start.TextContainer is DocumentSequenceTextContainer))
src\Framework\MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (2)
247return GetAnchorPointForPointer(anchor.Start.CreatePointer(LogicalDirection.Forward)); 392start = textAnchor.Start;
src\Framework\MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (2)
273ITextPointer currentStart = anchor.Start; 300if (anchor.Start.CompareTo(currentStart) != 0)
src\Framework\MS\Internal\Annotations\Component\AnnotationHighlightLayer.cs (8)
81ITextPointer start = highlightRange.Range.Start; 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); 1131ITextView parentView = TextSelectionHelper.GetDocumentPageTextView(TopOwner.Range.Start.CreatePointer(LogicalDirection.Forward));
src\Framework\MS\Internal\Annotations\Component\HighlightComponent.cs (3)
352ITextContainer textContainer = textAnchor.Start.TextContainer; 550ITextContainer textContainer = textAnchor.Start.TextContainer; 610ITextContainer textContainer = textAnchor.Start.TextContainer;
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (4)
499ITextContainer textContainer = anchor.Start.TextContainer; 682ITextPointer start = anchor.Start.CreatePointer(LogicalDirection.Forward); 1138int res = firstAnchor.Start.CompareTo(secondAnchor.Start);
src\Framework\MS\Internal\Annotations\TextAnchor.cs (3)
113if (textPointer.TextContainer != this.Start.TextContainer) 121if (textPointer.CompareTo(this.Start) < 0) 485return Start 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)) || 876if (((anchor.Start.CompareTo(selection.Start) == 0) &&