pub trait IUIAutomationSelectionPattern_Impl: Sized {
    // Required methods
    fn GetCurrentSelection(&self) -> Result<IUIAutomationElementArray>;
    fn CurrentCanSelectMultiple(&self) -> Result<BOOL>;
    fn CurrentIsSelectionRequired(&self) -> Result<BOOL>;
    fn GetCachedSelection(&self) -> Result<IUIAutomationElementArray>;
    fn CachedCanSelectMultiple(&self) -> Result<BOOL>;
    fn CachedIsSelectionRequired(&self) -> Result<BOOL>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§