Interface IRangeValuePattern
The methods and properties used to interact with a control that can be set to a value within a range.
public interface IRangeValuePattern
Properties
IsReadOnly
Indicates whether the value of UIAPro object is read-only.
bool IsReadOnly { get; }
Property Value
LargeChange
The control-specific large-change value which is added to or subtracted from the Value of the current UIAPro object.
double LargeChange { get; }
Property Value
Maximum
The maximum value supported by the UIAPro object.
double Maximum { get; }
Property Value
Minimum
The minimum value supported by the UIAPro object.
double Minimum { get; }
Property Value
SmallChange
The small-change value, unique to the UIAPro object, which is added to or subtracted from the Value of the current UIAPro object.
double SmallChange { get; }
Property Value
Value
The current value of the UIAPro object.
double Value { get; set; }