windows::Win32::UI::Accessibility

Trait IUIAutomationGridPattern_Impl

pub trait IUIAutomationGridPattern_Impl: IUnknownImpl {
    // Required methods
    fn GetItem(&self, row: i32, column: i32) -> Result<IUIAutomationElement>;
    fn CurrentRowCount(&self) -> Result<i32>;
    fn CurrentColumnCount(&self) -> Result<i32>;
    fn CachedRowCount(&self) -> Result<i32>;
    fn CachedColumnCount(&self) -> Result<i32>;
}

Required Methods§

fn GetItem(&self, row: i32, column: i32) -> Result<IUIAutomationElement>

fn CurrentRowCount(&self) -> Result<i32>

fn CurrentColumnCount(&self) -> Result<i32>

fn CachedRowCount(&self) -> Result<i32>

fn CachedColumnCount(&self) -> Result<i32>

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§