5 overrides of Ranges
PresentationFramework (5)
MS\Internal\Annotations\Component\AnnotationHighlightLayer.cs (1)
561internal override IList Ranges
System\Windows\Documents\DocumentSequenceHighlightLayer.cs (1)
149internal override IList Ranges
System\Windows\Documents\Highlights.cs (1)
416internal override IList Ranges
System\Windows\Documents\SpellerHighlightLayer.cs (1)
210internal override IList Ranges
System\windows\Documents\TextSelectionHighlightLayer.cs (1)
354internal override IList Ranges
17 references to Ranges
PresentationFramework (17)
MS\Internal\Documents\TextBoxView.cs (1)
1485foreach (TextSegment segment in args.Ranges)
System\Windows\Controls\TextBlock.cs (1)
2935Invariant.Assert(args.Ranges != null);
System\Windows\Documents\DocumentSequenceTextContainer.cs (6)
656Debug.Assert(args.Ranges != null); 705Debug.Assert(args.Ranges.Count > 0 && ((TextSegment)args.Ranges[0]).Start.CompareTo(((TextSegment)args.Ranges[0]).End) < 0); 724while (idxScan < args.Ranges.Count) 726TextSegment ts = (TextSegment)args.Ranges[idxScan];
System\Windows\Documents\FixedDocument.cs (5)
1030Debug.Assert(args.Ranges != null); 1033Debug.Assert(args.Ranges.Count > 0 && ((TextSegment)args.Ranges[0]).Start.CompareTo(((TextSegment)args.Ranges[0]).End) < 0); 1133IList ranges = args.Ranges;
System\Windows\Documents\FlowDocument.cs (4)
1390Invariant.Assert(args.Ranges != null); 1408if (args.Ranges.Count > 0) 1420for (i = 0; i < args.Ranges.Count; i++) 1422textSegment = (TextSegment)args.Ranges[i];