pub trait DOMHTMLHRElementExt: 'static {
    fn align(&self) -> Option<GString>;
    fn is_no_shade(&self) -> bool;
    fn size(&self) -> Option<GString>;
    fn width(&self) -> Option<GString>;
    fn set_align(&self, value: &str);
    fn set_no_shade(&self, value: bool);
    fn set_size(&self, value: &str);
    fn set_width(&self, value: &str);
    fn connect_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_no_shade_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all DOMHTMLHRElement methods.

Implementors

DOMHTMLHRElement

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gboolean

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Implementors