Trait windows::Win32::Storage::Xps::IXpsOMGeometry_Impl

pub trait IXpsOMGeometry_Impl: Sized + IXpsOMShareable_Impl {
    // Required methods
    fn GetFigures(&self) -> Result<IXpsOMGeometryFigureCollection>;
    fn GetFillRule(&self) -> Result<XPS_FILL_RULE>;
    fn SetFillRule(&self, fillrule: XPS_FILL_RULE) -> Result<()>;
    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, lookup: &PCWSTR) -> Result<()>;
    fn Clone(&self) -> Result<IXpsOMGeometry>;
}

Required Methods§

fn GetFigures(&self) -> Result<IXpsOMGeometryFigureCollection>

fn GetFillRule(&self) -> Result<XPS_FILL_RULE>

fn SetFillRule(&self, fillrule: XPS_FILL_RULE) -> Result<()>

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, lookup: &PCWSTR) -> Result<()>

fn Clone(&self) -> Result<IXpsOMGeometry>

Object Safety§

This trait is not object safe.

Implementors§