Trait windows::Win32::UI::Accessibility::ITextProvider_Impl

pub trait ITextProvider_Impl: Sized {
    // Required methods
    fn GetSelection(&self) -> Result<*mut SAFEARRAY>;
    fn GetVisibleRanges(&self) -> Result<*mut SAFEARRAY>;
    fn RangeFromChild(
        &self,
        childelement: Option<&IRawElementProviderSimple>,
    ) -> Result<ITextRangeProvider>;
    fn RangeFromPoint(&self, point: &UiaPoint) -> Result<ITextRangeProvider>;
    fn DocumentRange(&self) -> Result<ITextRangeProvider>;
    fn SupportedTextSelection(&self) -> Result<SupportedTextSelection>;
}

Required Methods§

fn GetSelection(&self) -> Result<*mut SAFEARRAY>

fn GetVisibleRanges(&self) -> Result<*mut SAFEARRAY>

fn RangeFromChild( &self, childelement: Option<&IRawElementProviderSimple>, ) -> Result<ITextRangeProvider>

fn RangeFromPoint(&self, point: &UiaPoint) -> Result<ITextRangeProvider>

fn DocumentRange(&self) -> Result<ITextRangeProvider>

fn SupportedTextSelection(&self) -> Result<SupportedTextSelection>

Object Safety§

This trait is not object safe.

Implementors§