pub trait DOMHTMLTableElementExt: 'static {
Show 45 methods fn create_caption(&self) -> Option<DOMHTMLElement>; fn create_t_foot(&self) -> Option<DOMHTMLElement>; fn create_t_head(&self) -> Option<DOMHTMLElement>; fn delete_caption(&self); fn delete_row(&self, index: c_long) -> Result<(), Error>; fn delete_t_foot(&self); fn delete_t_head(&self); fn align(&self) -> Option<GString>; fn bg_color(&self) -> Option<GString>; fn border(&self) -> Option<GString>; fn caption(&self) -> Option<DOMHTMLTableCaptionElement>; fn cell_padding(&self) -> Option<GString>; fn cell_spacing(&self) -> Option<GString>; fn rows(&self) -> Option<DOMHTMLCollection>; fn rules(&self) -> Option<GString>; fn summary(&self) -> Option<GString>; fn t_bodies(&self) -> Option<DOMHTMLCollection>; fn t_foot(&self) -> Option<DOMHTMLTableSectionElement>; fn t_head(&self) -> Option<DOMHTMLTableSectionElement>; fn width(&self) -> Option<GString>; fn insert_row(&self, index: c_long) -> Result<DOMHTMLElement, Error>; fn set_align(&self, value: &str); fn set_bg_color(&self, value: &str); fn set_border(&self, value: &str); fn set_caption(
        &self,
        value: &impl IsA<DOMHTMLTableCaptionElement>
    ) -> Result<(), Error>; fn set_cell_padding(&self, value: &str); fn set_cell_spacing(&self, value: &str); fn set_rules(&self, value: &str); fn set_summary(&self, value: &str); fn set_t_foot(
        &self,
        value: &impl IsA<DOMHTMLTableSectionElement>
    ) -> Result<(), Error>; fn set_t_head(
        &self,
        value: &impl IsA<DOMHTMLTableSectionElement>
    ) -> Result<(), Error>; fn set_width(&self, value: &str); fn connect_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_bg_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_border_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_caption_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_cell_padding_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_cell_spacing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_rows_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_rules_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_summary_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_t_bodies_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_t_foot_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_t_head_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLElement

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLElement

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLElement

Deprecated since 2.22

Use JavaScriptCore API instead

Deprecated since 2.22

Use JavaScriptCore API instead

index

A glong

Deprecated since 2.22

Use JavaScriptCore API instead

Deprecated since 2.22

Use JavaScriptCore API instead

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

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLTableCaptionElement

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

Returns

A DOMHTMLCollection

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

Returns

A DOMHTMLCollection

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLTableSectionElement

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A DOMHTMLTableSectionElement

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

index

A glong

Returns

A DOMHTMLElement

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A DOMHTMLTableCaptionElement

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Deprecated since 2.22

Use JavaScriptCore API instead

value

A DOMHTMLTableSectionElement

Deprecated since 2.22

Use JavaScriptCore API instead

value

A DOMHTMLTableSectionElement

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Implementors