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)
212internal 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)
1445foreach (TextSegment segment in args.Ranges)
System\Windows\Controls\TextBlock.cs (1)
2924Invariant.Assert(args.Ranges != null);
System\Windows\Documents\DocumentSequenceTextContainer.cs (6)
647Debug.Assert(args.Ranges != null); 696Debug.Assert(args.Ranges.Count > 0 && ((TextSegment)args.Ranges[0]).Start.CompareTo(((TextSegment)args.Ranges[0]).End) < 0); 715while (idxScan < args.Ranges.Count) 717TextSegment ts = (TextSegment)args.Ranges[idxScan];
System\Windows\Documents\FixedDocument.cs (5)
1032Debug.Assert(args.Ranges != null); 1035Debug.Assert(args.Ranges.Count > 0 && ((TextSegment)args.Ranges[0]).Start.CompareTo(((TextSegment)args.Ranges[0]).End) < 0); 1135IList ranges = args.Ranges;
System\Windows\Documents\FlowDocument.cs (4)
1381Invariant.Assert(args.Ranges != null); 1399if (args.Ranges.Count > 0) 1411for (i = 0; i < args.Ranges.Count; i++) 1413textSegment = (TextSegment)args.Ranges[i];