pub trait ICaretPositionProvider_Impl: Sized {
    // Required method
    fn GetCaretPosition(
        &self,
        pptcaret: *mut POINT,
        pflheight: *mut f32
    ) -> Result<()>;
}

Required Methods§

fn GetCaretPosition( &self, pptcaret: *mut POINT, pflheight: *mut f32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§