Trait webkit2gtk_webextension::DOMHTMLTableSectionElementExt[][src]

pub trait DOMHTMLTableSectionElementExt {
    fn delete_row(&self, index: c_long) -> Result<(), Error>;
fn get_align(&self) -> Option<String>;
fn get_ch(&self) -> Option<String>;
fn get_ch_off(&self) -> Option<String>;
fn get_rows(&self) -> Option<DOMHTMLCollection>;
fn get_v_align(&self) -> Option<String>;
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_property_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_ch_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_ch_off_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_rows_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_v_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors