pub trait IDCompositionScaleTransform_Impl: Sized + IDCompositionTransform_Impl {
    // Required methods
    fn SetScaleX(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetScaleX2(&self, scalex: f32) -> Result<()>;
    fn SetScaleY(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetScaleY2(&self, scaley: f32) -> Result<()>;
    fn SetCenterX(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetCenterX2(&self, centerx: f32) -> Result<()>;
    fn SetCenterY(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetCenterY2(&self, centery: f32) -> Result<()>;
}

Required Methods§

fn SetScaleX(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetScaleX2(&self, scalex: f32) -> Result<()>

fn SetScaleY(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetScaleY2(&self, scaley: f32) -> Result<()>

fn SetCenterX(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetCenterX2(&self, centerx: f32) -> Result<()>

fn SetCenterY(&self, animation: Option<&IDCompositionAnimation>) -> Result<()>

fn SetCenterY2(&self, centery: f32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§