Show / Hide Table of Contents

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 Source

IsReadOnly

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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 Source

SetValue(Double)

Sets the value of the control.

Declaration
void SetValue(double value)
Parameters
Type Name Description
System.Double value

The value to set.

  • Improve this Doc
  • View Source