7 references to WindowsEditBoxRange
UIAutomationClientSideProviders (7)
MS\Internal\AutomationProxies\WindowsEditBox.cs (4)
329return new ITextRangeProvider[] { new WindowsEditBoxRange(this, start, end) }; 337return new ITextRangeProvider[] { new WindowsEditBoxRange(this, start, end) }; 371return new WindowsEditBoxRange(this, start, start); 382return new WindowsEditBoxRange(this, 0, GetTextLength());
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (3)
56return new WindowsEditBoxRange(_provider, Start, End); 190return val.Equals(targetAttribute) ? new WindowsEditBoxRange(_provider, Start, End) : null; 213return i >= 0 ? new WindowsEditBoxRange(_provider, Start + i, Start + i + text.Length) : null;