pub trait IInkCursor_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn Id(&self) -> Result<i32>;
    fn Inverted(&self) -> Result<VARIANT_BOOL>;
    fn DrawingAttributes(&self) -> Result<IInkDrawingAttributes>;
    fn putref_DrawingAttributes(
        &self,
        attributes: Option<&IInkDrawingAttributes>
    ) -> Result<()>;
    fn Tablet(&self) -> Result<IInkTablet>;
    fn Buttons(&self) -> Result<IInkCursorButtons>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§