pub trait IUIAnimationVariableChangeHandler_Impl: Sized {
// Required method
fn OnValueChanged(
&self,
storyboard: Option<&IUIAnimationStoryboard>,
variable: Option<&IUIAnimationVariable>,
newvalue: f64,
previousvalue: f64,
) -> Result<()>;
}
Required Methods§
fn OnValueChanged( &self, storyboard: Option<&IUIAnimationStoryboard>, variable: Option<&IUIAnimationVariable>, newvalue: f64, previousvalue: f64, ) -> Result<()>
Object Safety§
This trait is not object safe.