Trait windows::Win32::UI::TextServices::ITfFnAdviseText_Impl

pub trait ITfFnAdviseText_Impl: Sized + ITfFunction_Impl {
    // Required methods
    fn OnTextUpdate(
        &self,
        prange: Option<&ITfRange>,
        pchtext: &PCWSTR,
        cch: i32,
    ) -> Result<()>;
    fn OnLatticeUpdate(
        &self,
        prange: Option<&ITfRange>,
        plattice: Option<&ITfLMLattice>,
    ) -> Result<()>;
}

Required Methods§

fn OnTextUpdate( &self, prange: Option<&ITfRange>, pchtext: &PCWSTR, cch: i32, ) -> Result<()>

fn OnLatticeUpdate( &self, prange: Option<&ITfRange>, plattice: Option<&ITfLMLattice>, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§