7 references to WindowsEditBoxRange
UIAutomationClientSideProviders (7)
MS\Internal\AutomationProxies\WindowsEditBox.cs (4)
330return new ITextRangeProvider[] { new WindowsEditBoxRange(this, start, end) }; 338return new ITextRangeProvider[] { new WindowsEditBoxRange(this, start, end) }; 372return new WindowsEditBoxRange(this, start, start); 383return new WindowsEditBoxRange(this, 0, GetTextLength());
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (3)
60return new WindowsEditBoxRange(_provider, Start, End); 194return val.Equals(targetAttribute) ? new WindowsEditBoxRange(_provider, Start, End) : null; 217return i >= 0 ? new WindowsEditBoxRange(_provider, Start + i, Start + i + text.Length) : null;