pub trait GuiTextField_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 20 methods // Provided methods fn caret_position(&self) -> Result<i32> { ... } fn set_caret_position(&self, value: i32) -> Result<()> { ... } fn displayed_text(&self) -> Result<String> { ... } fn highlighted(&self) -> Result<bool> { ... } fn history_cur_entry(&self) -> Result<String> { ... } fn history_cur_index(&self) -> Result<i32> { ... } fn history_is_active(&self) -> Result<bool> { ... } fn history_list(&self) -> Result<GuiCollection> { ... } fn is_hotspot(&self) -> Result<bool> { ... } fn is_left_label(&self) -> Result<bool> { ... } fn is_list_element(&self) -> Result<bool> { ... } fn is_o_field(&self) -> Result<bool> { ... } fn is_right_label(&self) -> Result<bool> { ... } fn left_label(&self) -> Result<SAPComponent> { ... } fn max_length(&self) -> Result<i32> { ... } fn numerical(&self) -> Result<bool> { ... } fn required(&self) -> Result<bool> { ... } fn right_label(&self) -> Result<SAPComponent> { ... } fn get_list_property(&self, p0: String) -> Result<String> { ... } fn get_list_property_non_rec(&self, p0: String) -> Result<String> { ... }
}

Provided Methods§

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§