windows::Win32::UI::Accessibility

Trait IUIAutomationTextPattern_Impl

pub trait IUIAutomationTextPattern_Impl: IUnknownImpl {
    // Required methods
    fn RangeFromPoint(&self, pt: &POINT) -> Result<IUIAutomationTextRange>;
    fn RangeFromChild(
        &self,
        child: Ref<'_, IUIAutomationElement>,
    ) -> Result<IUIAutomationTextRange>;
    fn GetSelection(&self) -> Result<IUIAutomationTextRangeArray>;
    fn GetVisibleRanges(&self) -> Result<IUIAutomationTextRangeArray>;
    fn DocumentRange(&self) -> Result<IUIAutomationTextRange>;
    fn SupportedTextSelection(&self) -> Result<SupportedTextSelection>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§