pub trait DOMHTMLTableRowElementExt: 'static {
Show 23 methods fn delete_cell(&self, index: c_long) -> Result<(), Error>; fn align(&self) -> Option<GString>; fn bg_color(&self) -> Option<GString>; fn cells(&self) -> Option<DOMHTMLCollection>; fn ch(&self) -> Option<GString>; fn ch_off(&self) -> Option<GString>; fn row_index(&self) -> c_long; fn section_row_index(&self) -> c_long; fn v_align(&self) -> Option<GString>; fn insert_cell(&self, index: c_long) -> Result<DOMHTMLElement, Error>; fn set_align(&self, value: &str); fn set_bg_color(&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_bg_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_cells_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_row_index_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_section_row_index_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 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 glong

Deprecated since 2.22

Use JavaScriptCore API instead

Returns

A glong

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

Deprecated since 2.22

Use JavaScriptCore API instead

value

A gchar

Implementors