Trait windows::Win32::UI::TextServices::ITfContextView_Impl

pub trait ITfContextView_Impl: Sized {
    // Required methods
    fn GetRangeFromPoint(
        &self,
        ec: u32,
        ppt: *const POINT,
        dwflags: u32,
    ) -> Result<ITfRange>;
    fn GetTextExt(
        &self,
        ec: u32,
        prange: Option<&ITfRange>,
        prc: *mut RECT,
        pfclipped: *mut BOOL,
    ) -> Result<()>;
    fn GetScreenExt(&self) -> Result<RECT>;
    fn GetWnd(&self) -> Result<HWND>;
}

Required Methods§

fn GetRangeFromPoint( &self, ec: u32, ppt: *const POINT, dwflags: u32, ) -> Result<ITfRange>

fn GetTextExt( &self, ec: u32, prange: Option<&ITfRange>, prc: *mut RECT, pfclipped: *mut BOOL, ) -> Result<()>

fn GetScreenExt(&self) -> Result<RECT>

fn GetWnd(&self) -> Result<HWND>

Object Safety§

This trait is not object safe.

Implementors§