[][src]Trait webkit2gtk_webextension::DOMHTMLTableSectionElementExt

pub trait DOMHTMLTableSectionElementExt: 'static {
    fn delete_row(&self, index: c_long) -> Result<(), Error>;
fn get_align(&self) -> Option<GString>;
fn get_ch(&self) -> Option<GString>;
fn get_ch_off(&self) -> Option<GString>;
fn get_rows(&self) -> Option<DOMHTMLCollection>;
fn get_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_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

fn delete_row(&self, index: c_long) -> Result<(), Error>

fn get_align(&self) -> Option<GString>

fn get_ch(&self) -> Option<GString>

fn get_ch_off(&self) -> Option<GString>

fn get_rows(&self) -> Option<DOMHTMLCollection>

fn get_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_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

Loading content...

Implementors

impl<O: IsA<DOMHTMLTableSectionElement>> DOMHTMLTableSectionElementExt for O[src]

Loading content...