Interface IRangeValueProvider
Exposes methods and properties to support access by a UI automation client to controls that can be set to a value within a range.
Namespace: System.Windows.Automation.Provider
Assembly: OpenSilver.dll
Syntax
public interface IRangeValueProvider
Properties
| Improve this Doc View SourceIsReadOnly
Gets a value that indicates whether the value of a control is read-only.
Declaration
bool IsReadOnly { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the value is read-only; false if it can be modified. |
LargeChange
Gets the value that is added to or subtracted from the Value property when a large change is made, such as with the PAGE DOWN key.
Declaration
double LargeChange { get; }
Property Value
Type | Description |
---|---|
System.Double | The large-change value that is supported by the control, or null if the control does not support LargeChange. |
Maximum
Gets the maximum range value that is supported by the control.
Declaration
double Maximum { get; }
Property Value
Type | Description |
---|---|
System.Double | The maximum value that is supported by the control, or null if the control does not support Maximum. |
Minimum
Gets the minimum range value that is supported by the control.
Declaration
double Minimum { get; }
Property Value
Type | Description |
---|---|
System.Double | The minimum value that is supported by the control, or null if the control does not support Minimum. |
SmallChange
Gets the value that is added to or subtracted from the Value property when a small change is made, such as with an arrow key.
Declaration
double SmallChange { get; }
Property Value
Type | Description |
---|---|
System.Double | The small-change value supported by the control, or null if the control does not support SmallChange. |
Value
Gets the value of the control.
Declaration
double Value { get; }
Property Value
Type | Description |
---|---|
System.Double | The value of the control, or null if the control does not support Value. |
Methods
| Improve this Doc View SourceSetValue(Double)
Sets the value of the control.
Declaration
void SetValue(double value)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value to set. |