8 instantiations of WindowsRichEditRange
UIAutomationClientsideProviders (8)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (4)
260return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 270return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 314return range != null ? new WindowsRichEditRange(range, this) : null; 331return new WindowsRichEditRange(range, this);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (4)
54return range!=null ? new WindowsRichEditRange(range, _pattern) : null; 167return length > 0 ? new WindowsRichEditRange(range, _pattern) : null; 516return new WindowsRichEditRange(subrange, _pattern); 569return new WindowsRichEditRange(subrange, _pattern);
12 references to WindowsRichEditRange
UIAutomationClientsideProviders (12)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (7)
402bool gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 406gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 415gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 421gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 430gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 434gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 450gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.tomStart, out x, out y);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (5)
60WindowsRichEditRange otherRange = (WindowsRichEditRange)range; 68WindowsRichEditRange otherRange = (WindowsRichEditRange)targetRange; 330ITextRange range = ((WindowsRichEditRange)targetRange)._range;