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<()> { ... }
}

Provided Methods§

source

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

source

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

source

fn get_button_checked(&self, p0: i32) -> Result<bool>

source

fn get_button_enabled(&self, p0: i32) -> Result<bool>

source

fn get_button_icon(&self, p0: i32) -> Result<String>

source

fn get_button_id(&self, p0: i32) -> Result<String>

source

fn get_button_text(&self, p0: i32) -> Result<String>

source

fn get_button_tooltip(&self, p0: i32) -> Result<String>

source

fn get_button_type(&self, p0: i32) -> Result<String>

source

fn get_menu_item_id_from_position(&self, p0: i32) -> Result<String>

source

fn press_button(&self, p0: String) -> Result<()>

source

fn press_context_button(&self, p0: String) -> Result<()>

source

fn select_menu_item(&self, p0: String) -> Result<()>

source

fn select_menu_item_by_text(&self, p0: String) -> Result<()>

Implementors§