Trait GuiTextFieldExt
Source pub trait GuiTextFieldExt<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<GuiComponent> { ... }
fn max_length(&self) -> Result<i32> { ... }
fn numerical(&self) -> Result<bool> { ... }
fn required(&self) -> Result<bool> { ... }
fn right_label(&self) -> Result<GuiComponent> { ... }
fn get_list_property(&self, p0: String) -> Result<String> { ... }
fn get_list_property_non_rec(&self, p0: String) -> Result<String> { ... }
}