pub trait GuiTextedit_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 30 methods
// Provided methods
fn current_column(&self) -> Result<i32> { ... }
fn current_line(&self) -> Result<i32> { ... }
fn first_visible_line(&self) -> Result<i32> { ... }
fn set_first_visible_line(&self, value: i32) -> Result<()> { ... }
fn last_visible_line(&self) -> Result<i32> { ... }
fn line_count(&self) -> Result<i32> { ... }
fn number_of_unprotected_text_parts(&self) -> Result<i32> { ... }
fn selected_text(&self) -> Result<String> { ... }
fn selection_end_column(&self) -> Result<i32> { ... }
fn selection_end_line(&self) -> Result<i32> { ... }
fn selection_index_end(&self) -> Result<i32> { ... }
fn selection_index_start(&self) -> Result<i32> { ... }
fn selection_start_column(&self) -> Result<i32> { ... }
fn selection_start_line(&self) -> Result<i32> { ... }
fn context_menu(&self) -> Result<()> { ... }
fn double_click(&self) -> Result<()> { ... }
fn get_line_text(&self, p0: i32) -> Result<String> { ... }
fn get_unprotected_text_part(&self, p0: i32) -> Result<String> { ... }
fn is_breakpoint_line(&self, p0: i32) -> Result<bool> { ... }
fn is_comment_line(&self, p0: i32) -> Result<bool> { ... }
fn is_highlighted_line(&self, p0: i32) -> Result<bool> { ... }
fn is_protected_line(&self, p0: i32) -> Result<bool> { ... }
fn is_selected_line(&self, p0: i32) -> Result<bool> { ... }
fn modified_status_changed(&self, p0: bool) -> Result<()> { ... }
fn multiple_files_dropped(&self) -> Result<()> { ... }
fn press_f1(&self) -> Result<()> { ... }
fn press_f4(&self) -> Result<()> { ... }
fn set_selection_indexes(&self, p0: i32, p1: i32) -> Result<()> { ... }
fn set_unprotected_text_part(&self, p0: i32, p1: String) -> Result<bool> { ... }
fn single_file_dropped(&self, p0: String) -> Result<()> { ... }
}