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