5 overrides of Ranges
PresentationFramework (5)
MS\Internal\Annotations\Component\AnnotationHighlightLayer.cs (1)
568internal override IList Ranges
System\Windows\Documents\DocumentSequenceHighlightLayer.cs (1)
152internal override IList Ranges
System\Windows\Documents\Highlights.cs (1)
417internal override IList Ranges
System\Windows\Documents\SpellerHighlightLayer.cs (1)
213internal override IList Ranges
System\windows\Documents\TextSelectionHighlightLayer.cs (1)
356internal override IList Ranges
17 references to Ranges
PresentationFramework (17)
MS\Internal\Documents\TextBoxView.cs (1)
1487foreach (TextSegment segment in args.Ranges)
System\Windows\Controls\TextBlock.cs (1)
2945Invariant.Assert(args.Ranges != null);
System\Windows\Documents\DocumentSequenceTextContainer.cs (6)
664Debug.Assert(args.Ranges != null); 713Debug.Assert(args.Ranges.Count > 0 && ((TextSegment)args.Ranges[0]).Start.CompareTo(((TextSegment)args.Ranges[0]).End) < 0); 732while (idxScan < args.Ranges.Count) 734TextSegment ts = (TextSegment)args.Ranges[idxScan];
System\Windows\Documents\FixedDocument.cs (5)
1041Debug.Assert(args.Ranges != null); 1044Debug.Assert(args.Ranges.Count > 0 && ((TextSegment)args.Ranges[0]).Start.CompareTo(((TextSegment)args.Ranges[0]).End) < 0); 1144IList 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];