7 references to WindowsEditBoxRange
UIAutomationClientsideProviders (7)
MS\Internal\AutomationProxies\WindowsEditBox.cs (4)
369return new ITextRangeProvider[] { new WindowsEditBoxRange(this, start, end) }; 377return new ITextRangeProvider[] { new WindowsEditBoxRange(this, start, end) }; 411return new WindowsEditBoxRange(this, start, start); 422return new WindowsEditBoxRange(this, 0, GetTextLength());
MS\Internal\AutomationProxies\WindowsEditBoxRange.cs (3)
70return new WindowsEditBoxRange(_provider, Start, End); 204return val.Equals(targetAttribute) ? new WindowsEditBoxRange(_provider, Start, End) : null; 239return i >= 0 ? new WindowsEditBoxRange(_provider, Start + i, Start + i + text.Length) : null;