[][src]Struct winapi::um::spellcheck::ISpellChecker2

#[repr(C)]
pub struct ISpellChecker2 {
    pub lpVtbl: *const ISpellChecker2Vtbl,
}

Fields

lpVtbl: *const ISpellChecker2Vtbl

Methods

impl ISpellChecker2[src]

pub unsafe fn Remove(&self, word: LPCWSTR) -> HRESULT[src]

Methods from Deref<Target = ISpellChecker>

pub unsafe fn get_LanguageTag(&self, value: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn Check(
    &self,
    text: LPCWSTR,
    value: *mut *mut IEnumSpellingError
) -> HRESULT
[src]

pub unsafe fn Suggest(
    &self,
    word: LPCWSTR,
    value: *mut *mut IEnumString
) -> HRESULT
[src]

pub unsafe fn Add(&self, word: LPCWSTR) -> HRESULT[src]

pub unsafe fn Ignore(&self, word: LPCWSTR) -> HRESULT[src]

pub unsafe fn AutoCorrect(&self, from: LPCWSTR, to: LPCWSTR) -> HRESULT[src]

pub unsafe fn GetOptionValue(
    &self,
    optionId: LPCWSTR,
    value: *mut BYTE
) -> HRESULT
[src]

pub unsafe fn Get_OptionIds(&self, value: *mut *mut IEnumString) -> HRESULT[src]

pub unsafe fn Get_Id(&self, value: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn Get_LocalizedName(&self, value: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn add_SpellCheckerChanged(
    &self,
    handler: *const ISpellCheckerChangedEventHandler,
    eventCookie: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn remove_SpellCheckerChanged(&self, eventCookie: DWORD) -> HRESULT[src]

pub unsafe fn GetOptionDescription(
    &self,
    optionId: LPCWSTR,
    value: *mut *mut IOptionDescription
) -> HRESULT
[src]

pub unsafe fn ComprehensiveCheck(
    &self,
    text: LPCWSTR,
    value: *mut *mut IEnumSpellingError
) -> HRESULT
[src]

Trait Implementations

impl Interface for ISpellChecker2[src]

impl Deref for ISpellChecker2[src]

type Target = ISpellChecker

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]