pub trait GuiToolbarControl_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 14 methods
// Provided methods
fn button_count(&self) -> Result<i32> { ... }
fn focused_button(&self) -> Result<i32> { ... }
fn get_button_checked(&self, p0: i32) -> Result<bool> { ... }
fn get_button_enabled(&self, p0: i32) -> Result<bool> { ... }
fn get_button_icon(&self, p0: i32) -> Result<String> { ... }
fn get_button_id(&self, p0: i32) -> Result<String> { ... }
fn get_button_text(&self, p0: i32) -> Result<String> { ... }
fn get_button_tooltip(&self, p0: i32) -> Result<String> { ... }
fn get_button_type(&self, p0: i32) -> Result<String> { ... }
fn get_menu_item_id_from_position(&self, p0: i32) -> Result<String> { ... }
fn press_button(&self, p0: String) -> Result<()> { ... }
fn press_context_button(&self, p0: String) -> Result<()> { ... }
fn select_menu_item(&self, p0: String) -> Result<()> { ... }
fn select_menu_item_by_text(&self, p0: String) -> Result<()> { ... }
}