pub struct GuiTextedit { /* private fields */ }Trait Implementations§
Source§impl From<IDispatch> for GuiTextedit
impl From<IDispatch> for GuiTextedit
Source§impl GuiComponentExt for GuiTextedit
impl GuiComponentExt for GuiTextedit
Source§impl GuiContainerExt for GuiTextedit
impl GuiContainerExt for GuiTextedit
fn children(&self) -> Result<GuiComponentCollection>
fn find_by_id(&self, p0: String) -> Result<GuiComponent>
Source§impl GuiShellExt for GuiTextedit
impl GuiShellExt for GuiTextedit
Source§impl GuiTexteditExt for GuiTextedit
impl GuiTexteditExt for GuiTextedit
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 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<()>
Source§impl GuiVComponentExt for GuiTextedit
impl GuiVComponentExt for GuiTextedit
fn acc_label_collection(&self) -> Result<GuiComponentCollection>
fn acc_text(&self) -> Result<String>
fn acc_text_on_request(&self) -> Result<String>
fn acc_tooltip(&self) -> Result<String>
fn changeable(&self) -> Result<bool>
fn default_tooltip(&self) -> Result<String>
fn height(&self) -> Result<i32>
fn icon_name(&self) -> Result<String>
fn is_symbol_font(&self) -> Result<bool>
fn left(&self) -> Result<i32>
fn modified(&self) -> Result<bool>
fn parent_frame(&self) -> Result<GuiComponent>
fn screen_left(&self) -> Result<i32>
fn screen_top(&self) -> Result<i32>
fn text(&self) -> Result<String>
fn set_text(&self, value: String) -> Result<()>
fn tooltip(&self) -> Result<String>
fn top(&self) -> Result<i32>
fn width(&self) -> Result<i32>
fn dump_state(&self, p0: String) -> Result<GuiCollection>
fn set_focus(&self) -> Result<()>
fn visualize(&self, p0: bool) -> Result<bool>
Source§impl GuiVContainerExt for GuiTextedit
impl GuiVContainerExt for GuiTextedit
fn find_all_by_name( &self, p0: String, p1: String, ) -> Result<GuiComponentCollection>
fn find_all_by_name_ex( &self, p0: String, p1: i32, ) -> Result<GuiComponentCollection>
fn find_by_name(&self, p0: String, p1: String) -> Result<GuiComponent>
fn find_by_name_ex(&self, p0: String, p1: String) -> Result<GuiComponent>
Source§impl HasIDispatch for GuiTextedit
impl HasIDispatch for GuiTextedit
Source§fn get_idispatch(&self) -> &IDispatch
fn get_idispatch(&self) -> &IDispatch
Get the IDispatch object for low-level access to this component.
Source§impl HasSAPType for GuiTextedit
impl HasSAPType for GuiTextedit
Source§impl IsA<GuiComponent> for GuiTextedit
impl IsA<GuiComponent> for GuiTextedit
Source§fn upcast(&self) -> GuiComponent
fn upcast(&self) -> GuiComponent
Upcast this value to it’s parent type.
Source§impl IsA<GuiContainer> for GuiTextedit
impl IsA<GuiContainer> for GuiTextedit
Source§fn upcast(&self) -> GuiContainer
fn upcast(&self) -> GuiContainer
Upcast this value to it’s parent type.
Source§impl IsA<GuiShell> for GuiTextedit
impl IsA<GuiShell> for GuiTextedit
Source§impl IsA<GuiVComponent> for GuiTextedit
impl IsA<GuiVComponent> for GuiTextedit
Source§fn upcast(&self) -> GuiVComponent
fn upcast(&self) -> GuiVComponent
Upcast this value to it’s parent type.
Source§impl IsA<GuiVContainer> for GuiTextedit
impl IsA<GuiVContainer> for GuiTextedit
Source§fn upcast(&self) -> GuiVContainer
fn upcast(&self) -> GuiVContainer
Upcast this value to it’s parent type.
Source§impl VariantTypeExt<'_, GuiTextedit> for VARIANT
impl VariantTypeExt<'_, GuiTextedit> for VARIANT
Source§fn variant_from(value: GuiTextedit) -> VARIANT
fn variant_from(value: GuiTextedit) -> VARIANT
Convert from a type T into a
VARIANT.Source§fn variant_into(&self) -> Result<GuiTextedit>
fn variant_into(&self) -> Result<GuiTextedit>
Convert from a
VARIANT into a type, T.Auto Trait Implementations§
impl !Send for GuiTextedit
impl !Sync for GuiTextedit
impl Freeze for GuiTextedit
impl RefUnwindSafe for GuiTextedit
impl Unpin for GuiTextedit
impl UnsafeUnpin for GuiTextedit
impl UnwindSafe for GuiTextedit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more