MonoGdx.Scene2D.UI.Slider.OnValueChanged C# (CSharp) Method

OnValueChanged() protected method

protected OnValueChanged ( float oldValue, float newValue ) : bool
oldValue float
newValue float
return bool
        protected virtual bool OnValueChanged(float oldValue, float newValue)
        {
            return RaiseEvent(new RoutedPropertyChangedEventArgs<float>(oldValue, newValue) {
                RoutedEvent = ValueChangedEvent,
                OriginalSource = this,
                Source = this,
            });
        }