pub trait IFrameworkInputPaneHandler_Impl: Sized {
    // Required methods
    fn Showing(
        &self,
        prcinputpanescreenlocation: *const RECT,
        fensurefocusedelementinview: BOOL
    ) -> Result<()>;
    fn Hiding(&self, fensurefocusedelementinview: BOOL) -> Result<()>;
}

Required Methods§

fn Showing( &self, prcinputpanescreenlocation: *const RECT, fensurefocusedelementinview: BOOL ) -> Result<()>

fn Hiding(&self, fensurefocusedelementinview: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§