8 instantiations of WindowsRichEditRange
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (4)
243return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 253return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 297return range != null ? new WindowsRichEditRange(range, this) : null; 314return new WindowsRichEditRange(range, this);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (4)
42return range!=null ? new WindowsRichEditRange(range, _pattern) : null; 143return length > 0 ? new WindowsRichEditRange(range, _pattern) : null; 489return new WindowsRichEditRange(subrange, _pattern); 542return new WindowsRichEditRange(subrange, _pattern);
12 references to WindowsRichEditRange
UIAutomationClientSideProviders (12)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (7)
357bool gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 361gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 370gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 376gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 385gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 389gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 405gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.tomStart, out x, out y);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (5)
48WindowsRichEditRange otherRange = (WindowsRichEditRange)range; 56WindowsRichEditRange otherRange = (WindowsRichEditRange)targetRange; 303ITextRange range = ((WindowsRichEditRange)targetRange)._range;