pub trait IXpsOMGradientStopCollection_Impl: Sized {
    // Required methods
    fn GetCount(&self) -> Result<u32>;
    fn GetAt(&self, index: u32) -> Result<IXpsOMGradientStop>;
    fn InsertAt(
        &self,
        index: u32,
        stop: Option<&IXpsOMGradientStop>,
    ) -> Result<()>;
    fn RemoveAt(&self, index: u32) -> Result<()>;
    fn SetAt(&self, index: u32, stop: Option<&IXpsOMGradientStop>) -> Result<()>;
    fn Append(&self, stop: Option<&IXpsOMGradientStop>) -> Result<()>;
}

Required Methods§

fn GetCount(&self) -> Result<u32>

fn GetAt(&self, index: u32) -> Result<IXpsOMGradientStop>

fn InsertAt(&self, index: u32, stop: Option<&IXpsOMGradientStop>) -> Result<()>

fn RemoveAt(&self, index: u32) -> Result<()>

fn SetAt(&self, index: u32, stop: Option<&IXpsOMGradientStop>) -> Result<()>

fn Append(&self, stop: Option<&IXpsOMGradientStop>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§