New to Telerik UI for WPFStart a free 30-day trial

Exposes methods and properties associated with a range-based UI element for automation interactions.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
[Obsolete("This class will be removed. Use Telerik.Windows.Automation.Peers.RangeBaseAutomationPeer instead")]
public class RangeBaseAutomationPeer : FrameworkElementAutomationPeer, IRangeValueProvider

Inheritance: objectRangeBaseAutomationPeer

Derived Classes: RangeBaseAutomationPeerRadSliderAutomationPeer

Implements: IRangeValueProvider

Constructors

Initializes a new instance of the RangeBaseAutomationPeer class.

C#
public RangeBaseAutomationPeer(RangeBase owner)
Parameters:ownerRangeBase

Properties

Gets a value indicating whether the range is read-only.

C#
public bool IsReadOnly { get; }

Gets or sets the amount by which the range control changes when the user interacts with the control's large change mechanism, such as a scrollbar.

C#
public double LargeChange { get; }

Gets or sets the maximum value of the range.

C#
public double Maximum { get; }

Gets the minimum value of the RadRangeBase control.

C#
public double Minimum { get; }

Gets or sets the small change value for the range control, which is the amount the value will change when the user increments or decrements the value.

C#
public double SmallChange { get; }

Provides the current value of the RangeBase control, which is a base class for controls that represent a range of values.

C#
public double Value { get; }

Methods

C#
public override object GetPattern(PatternInterface patternInterface)
Parameters:patternInterfacePatternInterfaceReturns:

object