1 instantiation of RangeValuePattern
UIAutomationClient (1)
System\Windows\Automation\RangeValuePattern.cs (1)
176return new RangeValuePattern(el, hPattern, cached);
25 references to RangeValuePattern
UIAutomationClient (14)
MS\Internal\Automation\Schema.cs (14)
335new AutomationPropertyInfo( null, RangeValuePattern.ValueProperty, typeof(double), 0.0 ), 336new AutomationPropertyInfo( convertToBool, RangeValuePattern.IsReadOnlyProperty, typeof(bool), true ), 337new AutomationPropertyInfo( null, RangeValuePattern.MinimumProperty, typeof(object), 0.0 ), 338new AutomationPropertyInfo( null, RangeValuePattern.MaximumProperty, typeof(object), 0.0 ), 339new AutomationPropertyInfo( null, RangeValuePattern.LargeChangeProperty, typeof(double), 0.0 ), 340new AutomationPropertyInfo( null, RangeValuePattern.SmallChangeProperty, typeof(double), 0.0 ), 415private static readonly AutomationProperty [ ] RangeValueProperties = { RangeValuePattern.ValueProperty, 416RangeValuePattern.IsReadOnlyProperty, 417RangeValuePattern.MinimumProperty, 418RangeValuePattern.MaximumProperty, 419RangeValuePattern.LargeChangeProperty, 420RangeValuePattern.SmallChangeProperty,}; 477new AutomationPatternInfo( RangeValuePattern.Pattern, RangeValueProperties, new WrapObjectClientSide(RangeValuePattern.Wrap) ),
UIAutomationClientSideProviders (11)
MS\Internal\AutomationProxies\EventManager.cs (3)
195IRangeValueProvider rangeValue = el.GetPatternProvider(RangeValuePattern.Pattern) as IRangeValueProvider; 199RaisePropertyChangedEvent(el, RangeValuePattern.ValueProperty, rangeValue.Value); 520_objectIdClient.Add(RangeValuePattern.ValueProperty, new RaiseEvent(HandleRangeValueProperty));
MS\Internal\AutomationProxies\ProxyHwnd.cs (1)
365else if (idProp == ValuePattern.ValueProperty || idProp == RangeValuePattern.ValueProperty)
MS\Internal\AutomationProxies\WindowsIPAddress.cs (1)
339if (RangeValuePattern.Pattern == iid)
MS\Internal\AutomationProxies\WindowsProgressbar.cs (1)
77return (iid == RangeValuePattern.Pattern) ? this : null;
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
122return (iid == RangeValuePattern.Pattern && WindowScroll.Scrollable (_hwnd, _sbFlag) && HasValuePattern (_hwnd, _sbFlag)) ? this : null;
MS\Internal\AutomationProxies\WindowsSlider.cs (1)
83return iid == RangeValuePattern.Pattern ? this : null;
MS\Internal\AutomationProxies\WindowsSpinner.cs (1)
114return (iid == RangeValuePattern.Pattern) ? this : null;
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
113return (iid == RangeValuePattern.Pattern) ? this : null;
MS\Internal\AutomationProxies\WinFormsSpinner.cs (1)
220if (iid == RangeValuePattern.Pattern && _type == SpinnerType.Numeric)