pub trait IDCompositionTranslateTransform_Impl: Sized + IDCompositionTransform_Impl {
    // Required methods
    fn SetOffsetX(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetOffsetX2(&self, offsetx: f32) -> Result<()>;
    fn SetOffsetY(
        &self,
        animation: Option<&IDCompositionAnimation>
    ) -> Result<()>;
    fn SetOffsetY2(&self, offsety: f32) -> Result<()>;
}

Required Methods§

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

fn SetOffsetX2(&self, offsetx: f32) -> Result<()>

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

fn SetOffsetY2(&self, offsety: f32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§