pub trait IUIAutomationTextPattern_Impl: Sized {
    // Required methods
    fn RangeFromPoint(&self, pt: &POINT) -> Result<IUIAutomationTextRange>;
    fn RangeFromChild(
        &self,
        child: Option<&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§

Object Safety§

This trait is not object safe.

Implementors§