Trait windows::Win32::UI::Accessibility::IGridProvider_Impl
pub trait IGridProvider_Impl: Sized {
// Required methods
fn GetItem(
&self,
row: i32,
column: i32,
) -> Result<IRawElementProviderSimple>;
fn RowCount(&self) -> Result<i32>;
fn ColumnCount(&self) -> Result<i32>;
}
Required Methods§
fn GetItem(&self, row: i32, column: i32) -> Result<IRawElementProviderSimple>
fn RowCount(&self) -> Result<i32>
fn ColumnCount(&self) -> Result<i32>
Object Safety§
This trait is not object safe.