Trait windows::Win32::Storage::Xps::IXpsOMTileBrush_Impl

pub trait IXpsOMTileBrush_Impl: Sized + IXpsOMBrush_Impl {
    // Required methods
    fn GetTransform(&self) -> Result<IXpsOMMatrixTransform>;
    fn GetTransformLocal(&self) -> Result<IXpsOMMatrixTransform>;
    fn SetTransformLocal(
        &self,
        transform: Option<&IXpsOMMatrixTransform>,
    ) -> Result<()>;
    fn GetTransformLookup(&self) -> Result<PWSTR>;
    fn SetTransformLookup(&self, key: &PCWSTR) -> Result<()>;
    fn GetViewbox(&self) -> Result<XPS_RECT>;
    fn SetViewbox(&self, viewbox: *const XPS_RECT) -> Result<()>;
    fn GetViewport(&self) -> Result<XPS_RECT>;
    fn SetViewport(&self, viewport: *const XPS_RECT) -> Result<()>;
    fn GetTileMode(&self) -> Result<XPS_TILE_MODE>;
    fn SetTileMode(&self, tilemode: XPS_TILE_MODE) -> Result<()>;
}

Required Methods§

fn GetTransform(&self) -> Result<IXpsOMMatrixTransform>

fn GetTransformLocal(&self) -> Result<IXpsOMMatrixTransform>

fn SetTransformLocal( &self, transform: Option<&IXpsOMMatrixTransform>, ) -> Result<()>

fn GetTransformLookup(&self) -> Result<PWSTR>

fn SetTransformLookup(&self, key: &PCWSTR) -> Result<()>

fn GetViewbox(&self) -> Result<XPS_RECT>

fn SetViewbox(&self, viewbox: *const XPS_RECT) -> Result<()>

fn GetViewport(&self) -> Result<XPS_RECT>

fn SetViewport(&self, viewport: *const XPS_RECT) -> Result<()>

fn GetTileMode(&self) -> Result<XPS_TILE_MODE>

fn SetTileMode(&self, tilemode: XPS_TILE_MODE) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§