pub trait GuiTableControl_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 19 methods
// Provided methods
fn char_height(&self) -> Result<i32> { ... }
fn char_left(&self) -> Result<i32> { ... }
fn char_top(&self) -> Result<i32> { ... }
fn char_width(&self) -> Result<i32> { ... }
fn columns(&self) -> Result<GuiCollection> { ... }
fn current_col(&self) -> Result<i32> { ... }
fn current_row(&self) -> Result<i32> { ... }
fn horizontal_scrollbar(&self) -> Result<SAPComponent> { ... }
fn row_count(&self) -> Result<i32> { ... }
fn rows(&self) -> Result<GuiCollection> { ... }
fn table_field_name(&self) -> Result<String> { ... }
fn vertical_scrollbar(&self) -> Result<SAPComponent> { ... }
fn visible_row_count(&self) -> Result<i32> { ... }
fn configure_layout(&self) -> Result<()> { ... }
fn deselect_all_columns(&self) -> Result<()> { ... }
fn get_absolute_row(&self, p0: i32) -> Result<GuiTableRow> { ... }
fn get_cell(&self, p0: i32, p1: i32) -> Result<SAPComponent> { ... }
fn reorder_table(&self, p0: String) -> Result<()> { ... }
fn select_all_columns(&self) -> Result<()> { ... }
}