1 instantiation of RangeValuePattern
UIAutomationClient (1)
System\Windows\Automation\RangeValuePattern.cs (1)
192return new RangeValuePattern(el, hPattern, cached);
25 references to RangeValuePattern
UIAutomationClient (14)
MS\Internal\Automation\Schema.cs (14)
314new AutomationPropertyInfo( null, RangeValuePattern.ValueProperty, typeof(double), 0.0 ), 315new AutomationPropertyInfo( convertToBool, RangeValuePattern.IsReadOnlyProperty, typeof(bool), true ), 316new AutomationPropertyInfo( null, RangeValuePattern.MinimumProperty, typeof(object), 0.0 ), 317new AutomationPropertyInfo( null, RangeValuePattern.MaximumProperty, typeof(object), 0.0 ), 318new AutomationPropertyInfo( null, RangeValuePattern.LargeChangeProperty, typeof(double), 0.0 ), 319new AutomationPropertyInfo( null, RangeValuePattern.SmallChangeProperty, typeof(double), 0.0 ), 394private static readonly AutomationProperty [ ] RangeValueProperties = { RangeValuePattern.ValueProperty, 395RangeValuePattern.IsReadOnlyProperty, 396RangeValuePattern.MinimumProperty, 397RangeValuePattern.MaximumProperty, 398RangeValuePattern.LargeChangeProperty, 399RangeValuePattern.SmallChangeProperty,}; 456new AutomationPatternInfo( RangeValuePattern.Pattern, RangeValueProperties, new WrapObjectClientSide(RangeValuePattern.Wrap) ),
UIAutomationClientsideProviders (11)
MS\Internal\AutomationProxies\EventManager.cs (3)
208IRangeValueProvider rangeValue = el.GetPatternProvider(RangeValuePattern.Pattern) as IRangeValueProvider; 212RaisePropertyChangedEvent(el, RangeValuePattern.ValueProperty, rangeValue.Value); 533_objectIdClient.Add(RangeValuePattern.ValueProperty, new RaiseEvent(HandleRangeValueProperty));
MS\Internal\AutomationProxies\ProxyHwnd.cs (1)
381else if (idProp == ValuePattern.ValueProperty || idProp == RangeValuePattern.ValueProperty)
MS\Internal\AutomationProxies\WindowsIPAddress.cs (1)
356if (RangeValuePattern.Pattern == iid)
MS\Internal\AutomationProxies\WindowsProgressbar.cs (1)
93return (iid == RangeValuePattern.Pattern) ? this : null;
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
136return (iid == RangeValuePattern.Pattern && WindowScroll.Scrollable (_hwnd, _sbFlag) && HasValuePattern (_hwnd, _sbFlag)) ? this : null;
MS\Internal\AutomationProxies\WindowsSlider.cs (1)
99return iid == RangeValuePattern.Pattern ? this : null;
MS\Internal\AutomationProxies\WindowsSpinner.cs (1)
131return (iid == RangeValuePattern.Pattern) ? this : null;
MS\Internal\AutomationProxies\WindowsUpDown.cs (1)
130return (iid == RangeValuePattern.Pattern) ? this : null;
MS\Internal\AutomationProxies\WinFormsSpinner.cs (1)
230if (iid == RangeValuePattern.Pattern && _type == SpinnerType.Numeric)