pub trait DOMHTMLTextAreaElementExt: 'static {
Show 40 methods
fn area_type(&self) -> Option<GString>;
fn is_autofocus(&self) -> bool;
fn cols(&self) -> c_long;
fn default_value(&self) -> Option<GString>;
fn is_disabled(&self) -> bool;
fn form(&self) -> Option<DOMHTMLFormElement>;
fn name(&self) -> Option<GString>;
fn is_read_only(&self) -> bool;
fn rows(&self) -> c_long;
fn selection_end(&self) -> c_long;
fn selection_start(&self) -> c_long;
fn value(&self) -> Option<GString>;
fn is_will_validate(&self) -> bool;
fn is_edited(&self) -> bool;
fn select(&self);
fn set_autofocus(&self, value: bool);
fn set_cols(&self, value: c_long);
fn set_default_value(&self, value: &str);
fn set_disabled(&self, value: bool);
fn set_name(&self, value: &str);
fn set_read_only(&self, value: bool);
fn set_rows(&self, value: c_long);
fn set_selection_end(&self, value: c_long);
fn set_selection_range(&self, start: c_long, end: c_long, direction: &str);
fn set_selection_start(&self, value: c_long);
fn set_value(&self, value: &str);
fn type_(&self) -> Option<GString>;
fn connect_autofocus_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_cols_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_default_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_disabled_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_form_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_name_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_read_only_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_rows_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_selection_end_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_selection_start_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_type_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_will_validate_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Expand description
Required Methods
sourcefn is_autofocus(&self) -> bool
fn is_autofocus(&self) -> bool
sourcefn default_value(&self) -> Option<GString>
fn default_value(&self) -> Option<GString>
sourcefn is_disabled(&self) -> bool
fn is_disabled(&self) -> bool
sourcefn form(&self) -> Option<DOMHTMLFormElement>
fn form(&self) -> Option<DOMHTMLFormElement>
sourcefn is_read_only(&self) -> bool
fn is_read_only(&self) -> bool
sourcefn selection_end(&self) -> c_long
fn selection_end(&self) -> c_long
sourcefn selection_start(&self) -> c_long
fn selection_start(&self) -> c_long
sourcefn is_will_validate(&self) -> bool
fn is_will_validate(&self) -> bool
sourcefn select(&self)
fn select(&self)
Deprecated since 2.22
Use JavaScriptCore API instead