pub trait IUIAutomationSelectionItemPattern_Impl: Sized {
// Required methods
fn Select(&self) -> Result<()>;
fn AddToSelection(&self) -> Result<()>;
fn RemoveFromSelection(&self) -> Result<()>;
fn CurrentIsSelected(&self) -> Result<BOOL>;
fn CurrentSelectionContainer(&self) -> Result<IUIAutomationElement>;
fn CachedIsSelected(&self) -> Result<BOOL>;
fn CachedSelectionContainer(&self) -> Result<IUIAutomationElement>;
}
Required Methods§
fn Select(&self) -> Result<()>
fn AddToSelection(&self) -> Result<()>
fn RemoveFromSelection(&self) -> Result<()>
fn CurrentIsSelected(&self) -> Result<BOOL>
fn CurrentSelectionContainer(&self) -> Result<IUIAutomationElement>
fn CachedIsSelected(&self) -> Result<BOOL>
fn CachedSelectionContainer(&self) -> Result<IUIAutomationElement>
Object Safety§
This trait is not object safe.