windows::Win32::UI::Accessibility

Trait IUIAutomationGridItemPattern_Impl

pub trait IUIAutomationGridItemPattern_Impl: IUnknownImpl {
    // 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>

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§