pub trait DOMHTMLTableSectionElementExt: 'static {
Show 16 methods fn delete_row(&self, index: c_long) -> Result<(), Error>; fn align(&self) -> Option<GString>; fn ch(&self) -> Option<GString>; fn ch_off(&self) -> Option<GString>; fn rows(&self) -> Option<DOMHTMLCollection>; fn v_align(&self) -> Option<GString>; fn insert_row(&self, index: c_long) -> Result<DOMHTMLElement, Error>; fn set_align(&self, value: &str); fn set_ch(&self, value: &str); fn set_ch_off(&self, value: &str); fn set_v_align(&self, value: &str); fn connect_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_ch_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId; fn connect_ch_off_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_rows_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_v_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}
Expand description

Required Methods

Deprecated since 2.22

Use JavaScriptCore API instead

index

A glong

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 DOMHTMLCollection

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 gchar

Implementors