Class RangeBaseAutomationPeer
Exposes RangeBase types to UI automation.
Inheritance
System.Object
RangeBaseAutomationPeer
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Automation.Peers
Assembly: OpenSilver.dll
Syntax
public class RangeBaseAutomationPeer : FrameworkElementAutomationPeer, IDependencyObject, IRangeValueProvider
Constructors
| Improve this Doc View SourceRangeBaseAutomationPeer(RangeBase)
Initializes a new instance of the RangeBaseAutomationPeer class.
Declaration
public RangeBaseAutomationPeer(RangeBase owner)
Parameters
Type | Name | Description |
---|---|---|
RangeBase | owner | The RangeBase to associate with the RangeBaseAutomationPeer. |
Methods
| Improve this Doc View SourceGetPattern(PatternInterface)
Gets an object that supports the requested pattern, based on the patterns implemented by this RangeBaseAutomationPeer.
Declaration
public override object GetPattern(PatternInterface patternInterface)
Parameters
Type | Name | Description |
---|---|---|
PatternInterface | patternInterface | One of the enumeration values. |
Returns
Type | Description |
---|---|
System.Object | The object that implements the pattern interface, or null if the specified pattern interface is not implemented by this peer. |
Overrides
Explicit Interface Implementations
| Improve this Doc View SourceIRangeValueProvider.IsReadOnly
Indicates that the value can only be read, not modified. returns True if the control is read-only
Declaration
bool IRangeValueProvider.IsReadOnly { get; }
Returns
Type | Description |
---|---|
System.Boolean |
IRangeValueProvider.LargeChange
Value of a Large Change
Declaration
double IRangeValueProvider.LargeChange { get; }
Returns
Type | Description |
---|---|
System.Double |
IRangeValueProvider.Maximum
maximum value
Declaration
double IRangeValueProvider.Maximum { get; }
Returns
Type | Description |
---|---|
System.Double |
IRangeValueProvider.Minimum
minimum value
Declaration
double IRangeValueProvider.Minimum { get; }
Returns
Type | Description |
---|---|
System.Double |
IRangeValueProvider.SetValue(Double)
Request to set the value that this UI element is representing
Declaration
void IRangeValueProvider.SetValue(double val)
Parameters
Type | Name | Description |
---|---|---|
System.Double | val | Value to set the UI to, as an object |
IRangeValueProvider.SmallChange
Value of a Small Change
Declaration
double IRangeValueProvider.SmallChange { get; }
Returns
Type | Description |
---|---|
System.Double |
IRangeValueProvider.Value
Value of a value control, as an object
Declaration
double IRangeValueProvider.Value { get; }
Returns
Type | Description |
---|---|
System.Double |