Slider.IntermediateValue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property double IntermediateValue { double get(); void set(double value); };
double IntermediateValue();
void IntermediateValue(double value);
public double IntermediateValue { get; set; }
var double = slider.intermediateValue;
slider.intermediateValue = double;
Public Property IntermediateValue As Double
Property Value
double
A temporary value.
Remarks
Use this property to get the value of the Slider while the user is interacting with it, before the value is snapped to either the tick or step value (as specified by the SnapsTo property).
This property isn't typically set in XAML. It could be useful though as an element binding source for another XAML UI element that displays the IntermediateValue value.