5 overrides of Ranges
PresentationFramework (5)
MS\Internal\Annotations\Component\AnnotationHighlightLayer.cs (1)
560internal override IList<TextSegment> Ranges
System\Windows\Documents\DocumentSequenceHighlightLayer.cs (1)
148internal override IList<TextSegment> Ranges
System\Windows\Documents\Highlights.cs (1)
416internal override IList<TextSegment> Ranges
System\Windows\Documents\SpellerHighlightLayer.cs (1)
211internal override IList<TextSegment> Ranges
System\windows\Documents\TextSelectionHighlightLayer.cs (1)
353internal override IList<TextSegment> Ranges
17 references to Ranges
PresentationFramework (17)
MS\Internal\Documents\TextBoxView.cs (1)
1438foreach (TextSegment segment in args.Ranges)
System\Windows\Controls\TextBlock.cs (1)
2923Invariant.Assert(args.Ranges != null);
System\Windows\Documents\DocumentSequenceTextContainer.cs (6)
646Debug.Assert(args.Ranges != null); 695Debug.Assert(args.Ranges.Count > 0 && args.Ranges[0].Start.CompareTo(args.Ranges[0].End) < 0); 714while (idxScan < args.Ranges.Count) 716TextSegment ts = args.Ranges[idxScan];
System\Windows\Documents\FixedDocument.cs (5)
1032Debug.Assert(args.Ranges != null); 1035Debug.Assert(args.Ranges.Count > 0 && args.Ranges[0].Start.CompareTo(args.Ranges[0].End) < 0); 1135IList<TextSegment> ranges = args.Ranges;
System\Windows\Documents\FlowDocument.cs (4)
1380Invariant.Assert(args.Ranges != null); 1398if (args.Ranges.Count > 0) 1410for (i = 0; i < args.Ranges.Count; i++) 1412textSegment = args.Ranges[i];