8 instantiations of WindowsRichEditRange
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (4)
244return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 254return new ITextRangeProvider[] { new WindowsRichEditRange(range, this) }; 298return range != null ? new WindowsRichEditRange(range, this) : null; 315return new WindowsRichEditRange(range, this);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (4)
46return range!=null ? new WindowsRichEditRange(range, _pattern) : null; 147return length > 0 ? new WindowsRichEditRange(range, _pattern) : null; 496return new WindowsRichEditRange(subrange, _pattern); 549return new WindowsRichEditRange(subrange, _pattern);
12 references to WindowsRichEditRange
UIAutomationClientSideProviders (12)
MS\Internal\AutomationProxies\WindowsRichEdit.cs (7)
358bool gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 362gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.tomStart, out x, out y); 371gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 377gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.TA_BOTTOM | TomGetPoint.TA_RIGHT, out x, out y); 386gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 390gotPoint = WindowsRichEditRange.RangeGetPoint(range, TomGetPoint.TA_RIGHT, out x, out y); 406gotPoint = WindowsRichEditRange.RangeGetPoint(rangeAdjust, TomGetPoint.tomStart, out x, out y);
MS\Internal\AutomationProxies\WindowsRichEditRange.cs (5)
52WindowsRichEditRange otherRange = (WindowsRichEditRange)range; 60WindowsRichEditRange otherRange = (WindowsRichEditRange)targetRange; 310ITextRange range = ((WindowsRichEditRange)targetRange)._range;