pub struct GuiTextedit { /* private fields */ }

Trait Implementations§

source§

impl From<IDispatch> for GuiTextedit

source§

fn from(value: IDispatch) -> Self

Converts to this type from the input type.
source§

impl GuiComponent_Impl<GuiTextedit> for GuiTextedit

source§

fn container_type(&self) -> Result<bool>

source§

fn id(&self) -> Result<String>

source§

fn name(&self) -> Result<String>

source§

fn _type(&self) -> Result<String>

source§

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

source§

impl GuiContainer_Impl<GuiTextedit> for GuiTextedit

source§

fn children(&self) -> Result<GuiComponentCollection>

source§

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

source§

impl GuiShell_Impl<GuiTextedit> for GuiTextedit

source§

fn acc_description(&self) -> Result<String>

source§

fn drag_drop_supported(&self) -> Result<bool>

source§

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

source§

fn ocx_events(&self) -> Result<GuiCollection>

source§

fn sub_type(&self) -> Result<String>

source§

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

source§

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

source§

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

source§

impl GuiTextedit_Impl<GuiTextedit> for GuiTextedit

source§

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

source§

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

source§

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

source§

fn set_first_visible_line(&self, value: i32) -> Result<()>

source§

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

source§

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

source§

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

source§

fn selected_text(&self) -> Result<String>

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

fn context_menu(&self) -> Result<()>

source§

fn double_click(&self) -> Result<()>

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

fn multiple_files_dropped(&self) -> Result<()>

source§

fn press_f1(&self) -> Result<()>

source§

fn press_f4(&self) -> Result<()>

source§

fn set_selection_indexes(&self, p0: i32, p1: i32) -> Result<()>

source§

fn set_unprotected_text_part(&self, p0: i32, p1: String) -> Result<bool>

source§

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

source§

impl GuiVComponent_Impl<GuiTextedit> for GuiTextedit

source§

fn acc_label_collection(&self) -> Result<GuiComponentCollection>

source§

fn acc_text(&self) -> Result<String>

source§

fn acc_text_on_request(&self) -> Result<String>

source§

fn acc_tooltip(&self) -> Result<String>

source§

fn changeable(&self) -> Result<bool>

source§

fn default_tooltip(&self) -> Result<String>

source§

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

source§

fn icon_name(&self) -> Result<String>

source§

fn is_symbol_font(&self) -> Result<bool>

source§

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

source§

fn modified(&self) -> Result<bool>

source§

fn parent_frame(&self) -> Result<SAPComponent>

source§

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

source§

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

source§

fn text(&self) -> Result<String>

source§

fn set_text(&self, value: String) -> Result<()>

source§

fn tooltip(&self) -> Result<String>

source§

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

source§

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

source§

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

source§

fn set_focus(&self) -> Result<()>

source§

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

source§

impl GuiVContainer_Impl<GuiTextedit> for GuiTextedit

source§

fn find_all_by_name( &self, p0: String, p1: String ) -> Result<GuiComponentCollection>

source§

fn find_all_by_name_ex( &self, p0: String, p1: i32 ) -> Result<GuiComponentCollection>

source§

fn find_by_name(&self, p0: String, p1: String) -> Result<SAPComponent>

source§

fn find_by_name_ex(&self, p0: String, p1: String) -> Result<SAPComponent>

source§

impl HasIDispatch<GuiTextedit> for GuiTextedit

source§

fn get_idispatch(&self) -> &IDispatch

Get the IDispatch object for low-level access to this component.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.