pub trait IUIAutomationTransformPattern_Impl: Sized {
    // Required methods
    fn Move(&self, x: f64, y: f64) -> Result<()>;
    fn Resize(&self, width: f64, height: f64) -> Result<()>;
    fn Rotate(&self, degrees: f64) -> Result<()>;
    fn CurrentCanMove(&self) -> Result<BOOL>;
    fn CurrentCanResize(&self) -> Result<BOOL>;
    fn CurrentCanRotate(&self) -> Result<BOOL>;
    fn CachedCanMove(&self) -> Result<BOOL>;
    fn CachedCanResize(&self) -> Result<BOOL>;
    fn CachedCanRotate(&self) -> Result<BOOL>;
}

Required Methods§

fn Move(&self, x: f64, y: f64) -> Result<()>

fn Resize(&self, width: f64, height: f64) -> Result<()>

fn Rotate(&self, degrees: f64) -> Result<()>

fn CurrentCanMove(&self) -> Result<BOOL>

fn CurrentCanResize(&self) -> Result<BOOL>

fn CurrentCanRotate(&self) -> Result<BOOL>

fn CachedCanMove(&self) -> Result<BOOL>

fn CachedCanResize(&self) -> Result<BOOL>

fn CachedCanRotate(&self) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§