pub trait IUIAutomationGridItemPattern_Impl: Sized {
    // Required methods
    fn CurrentContainingGrid(&self) -> Result<IUIAutomationElement>;
    fn CurrentRow(&self) -> Result<i32>;
    fn CurrentColumn(&self) -> Result<i32>;
    fn CurrentRowSpan(&self) -> Result<i32>;
    fn CurrentColumnSpan(&self) -> Result<i32>;
    fn CachedContainingGrid(&self) -> Result<IUIAutomationElement>;
    fn CachedRow(&self) -> Result<i32>;
    fn CachedColumn(&self) -> Result<i32>;
    fn CachedRowSpan(&self) -> Result<i32>;
    fn CachedColumnSpan(&self) -> Result<i32>;
}

Required Methods§

fn CurrentContainingGrid(&self) -> Result<IUIAutomationElement>

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

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

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

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

fn CachedContainingGrid(&self) -> Result<IUIAutomationElement>

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§