8 instantiations of WindowsRichEditRange
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (4)
248return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 258return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 302return range != null ? new WindowsRichEditRange(range, this) : null; 319return new WindowsRichEditRange(range, this);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (4)
47return range!=null ? new WindowsRichEditRange(range, _pattern) : null; 148return length > 0 ? new WindowsRichEditRange(range, _pattern) : null; 497return new WindowsRichEditRange(subrange, _pattern); 550return new WindowsRichEditRange(subrange, _pattern);
12 references to WindowsRichEditRange
UIAutomationClientSideProviders (12)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (7)
362bool gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 366gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 375gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 381gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 390gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 394gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 410gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.tomStart, out x, out y);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (5)
53WindowsRichEditRange otherRange = (WindowsRichEditRange)range; 61WindowsRichEditRange otherRange = (WindowsRichEditRange)targetRange; 311ITextRange range = ((WindowsRichEditRange)targetRange)._range;