pub trait IUIAutomationTextRange3_Impl: Sized + IUIAutomationTextRange2_Impl {
    // Required methods
    fn GetEnclosingElementBuildCache(
        &self,
        cacherequest: Option<&IUIAutomationCacheRequest>,
    ) -> Result<IUIAutomationElement>;
    fn GetChildrenBuildCache(
        &self,
        cacherequest: Option<&IUIAutomationCacheRequest>,
    ) -> Result<IUIAutomationElementArray>;
    fn GetAttributeValues(
        &self,
        attributeids: *const UIA_TEXTATTRIBUTE_ID,
        attributeidcount: i32,
    ) -> Result<*mut SAFEARRAY>;
}

Required Methods§

fn GetEnclosingElementBuildCache( &self, cacherequest: Option<&IUIAutomationCacheRequest>, ) -> Result<IUIAutomationElement>

fn GetChildrenBuildCache( &self, cacherequest: Option<&IUIAutomationCacheRequest>, ) -> Result<IUIAutomationElementArray>

fn GetAttributeValues( &self, attributeids: *const UIA_TEXTATTRIBUTE_ID, attributeidcount: i32, ) -> Result<*mut SAFEARRAY>

Object Safety§

This trait is not object safe.

Implementors§