pub trait GuiTree_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 72 methods
// Provided methods
fn hierarchy_header_width(&self) -> Result<i32> { ... }
fn selected_node(&self) -> Result<String> { ... }
fn top_node(&self) -> Result<String> { ... }
fn change_checkbox(&self, p0: String, p1: String, p2: bool) -> Result<()> { ... }
fn click_link(&self, p0: String, p1: String) -> Result<()> { ... }
fn collapse_node(&self, p0: String) -> Result<()> { ... }
fn default_context_menu(&self) -> Result<()> { ... }
fn double_click_item(&self, p0: String, p1: String) -> Result<()> { ... }
fn double_click_node(&self, p0: String) -> Result<()> { ... }
fn ensure_visible_horizontal_item(
&self,
p0: String,
p1: String
) -> Result<()> { ... }
fn expand_node(&self, p0: String) -> Result<()> { ... }
fn find_node_key_by_path(&self, p0: String) -> Result<String> { ... }
fn get_abap_image(&self, p0: String, p1: String) -> Result<String> { ... }
fn get_check_box_state(&self, p0: String, p1: String) -> Result<bool> { ... }
fn get_column_index_from_name(&self, p0: String) -> Result<i32> { ... }
fn get_column_title_from_name(&self, p0: String) -> Result<String> { ... }
fn get_focused_node_key(&self) -> Result<String> { ... }
fn get_hierarchy_level(&self, p0: String) -> Result<i32> { ... }
fn get_hierarchy_title(&self) -> Result<String> { ... }
fn get_is_disabled(&self, p0: String, p1: String) -> Result<bool> { ... }
fn get_is_editable(&self, p0: String, p1: String) -> Result<bool> { ... }
fn get_is_high_lighted(&self, p0: String, p1: String) -> Result<bool> { ... }
fn get_item_height(&self, p0: String, p1: String) -> Result<i32> { ... }
fn get_item_left(&self, p0: String, p1: String) -> Result<i32> { ... }
fn get_item_style(&self, p0: String, p1: String) -> Result<i32> { ... }
fn get_item_text(&self, p0: String, p1: String) -> Result<String> { ... }
fn get_item_text_color(&self, p0: String, p1: String) -> Result<u64> { ... }
fn get_item_tool_tip(&self, p0: String, p1: String) -> Result<String> { ... }
fn get_item_top(&self, p0: String, p1: String) -> Result<i32> { ... }
fn get_item_type(&self, p0: String, p1: String) -> Result<i32> { ... }
fn get_item_width(&self, p0: String, p1: String) -> Result<i32> { ... }
fn get_list_tree_node_item_count(&self, p0: String) -> Result<i32> { ... }
fn get_next_node_key(&self, p0: String) -> Result<String> { ... }
fn get_node_abap_image(&self, p0: String) -> Result<String> { ... }
fn get_node_children_count(&self, p0: String) -> Result<i32> { ... }
fn get_node_children_count_by_path(&self, p0: String) -> Result<i32> { ... }
fn get_node_height(&self, p0: String) -> Result<i32> { ... }
fn get_node_index(&self, p0: String) -> Result<i32> { ... }
fn get_node_key_by_path(&self, p0: String) -> Result<String> { ... }
fn get_node_left(&self, p0: String) -> Result<i32> { ... }
fn get_node_path_by_key(&self, p0: String) -> Result<String> { ... }
fn get_node_style(&self, p0: String) -> Result<i32> { ... }
fn get_node_text_by_key(&self, p0: String) -> Result<String> { ... }
fn get_node_text_by_path(&self, p0: String) -> Result<String> { ... }
fn get_node_text_color(&self, p0: String) -> Result<u64> { ... }
fn get_node_tool_tip(&self, p0: String) -> Result<String> { ... }
fn get_node_top(&self, p0: String) -> Result<i32> { ... }
fn get_node_width(&self, p0: String) -> Result<i32> { ... }
fn get_parent(&self, p0: String) -> Result<String> { ... }
fn get_previous_node_key(&self, p0: String) -> Result<String> { ... }
fn get_selection_mode(&self) -> Result<i16> { ... }
fn get_style_description(&self, p0: i32) -> Result<String> { ... }
fn get_tree_type(&self) -> Result<i32> { ... }
fn header_context_menu(&self, p0: String) -> Result<()> { ... }
fn is_folder(&self, p0: String) -> Result<bool> { ... }
fn is_folder_expandable(&self, p0: String) -> Result<bool> { ... }
fn is_folder_expanded(&self, p0: String) -> Result<bool> { ... }
fn item_context_menu(&self, p0: String, p1: String) -> Result<()> { ... }
fn node_context_menu(&self, p0: String) -> Result<()> { ... }
fn press_button(&self, p0: String, p1: String) -> Result<()> { ... }
fn press_header(&self, p0: String) -> Result<()> { ... }
fn press_key(&self, p0: String) -> Result<()> { ... }
fn select_column(&self, p0: String) -> Result<()> { ... }
fn selected_item_column(&self) -> Result<String> { ... }
fn selected_item_node(&self) -> Result<String> { ... }
fn select_item(&self, p0: String, p1: String) -> Result<()> { ... }
fn select_node(&self, p0: String) -> Result<()> { ... }
fn set_check_box_state(&self, p0: String, p1: String, p2: i32) -> Result<()> { ... }
fn set_column_width(&self, p0: String, p1: i32) -> Result<()> { ... }
fn unselect_all(&self) -> Result<()> { ... }
fn unselect_column(&self, p0: String) -> Result<()> { ... }
fn unselect_node(&self, p0: String) -> Result<()> { ... }
}