Trait windows::Win32::UI::TextServices::ITfProperty_Impl

pub trait ITfProperty_Impl: Sized + ITfReadOnlyProperty_Impl {
    // Required methods
    fn FindRange(
        &self,
        ec: u32,
        prange: Option<&ITfRange>,
        pprange: *mut Option<ITfRange>,
        apos: TfAnchor,
    ) -> Result<()>;
    fn SetValueStore(
        &self,
        ec: u32,
        prange: Option<&ITfRange>,
        ppropstore: Option<&ITfPropertyStore>,
    ) -> Result<()>;
    fn SetValue(
        &self,
        ec: u32,
        prange: Option<&ITfRange>,
        pvarvalue: *const VARIANT,
    ) -> Result<()>;
    fn Clear(&self, ec: u32, prange: Option<&ITfRange>) -> Result<()>;
}

Required Methods§

fn FindRange( &self, ec: u32, prange: Option<&ITfRange>, pprange: *mut Option<ITfRange>, apos: TfAnchor, ) -> Result<()>

fn SetValueStore( &self, ec: u32, prange: Option<&ITfRange>, ppropstore: Option<&ITfPropertyStore>, ) -> Result<()>

fn SetValue( &self, ec: u32, prange: Option<&ITfRange>, pvarvalue: *const VARIANT, ) -> Result<()>

fn Clear(&self, ec: u32, prange: Option<&ITfRange>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§