ArcGISRuntimeXamarin.Samples.MapRotation.MapRotation.MySlider_ValueChanged C# (CSharp) Method

MySlider_ValueChanged() private method

private MySlider_ValueChanged ( object sender, ValueChangedEventArgs e ) : void
sender object
e ValueChangedEventArgs
return void
        private void MySlider_ValueChanged(object sender, ValueChangedEventArgs e)
        {
            // Display the rotation value in the Label formatted nicely with degree symbol.
            MyLabel.Text = string.Format("{0:0}°", MySlider.Value);

            // Set the MapView rotation to that of the Slider.
            MyMapView.SetViewpointRotationAsync(e.NewValue);
        }
    }