pub trait IUIAutomationGridPattern_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§