[][src]Trait webkit2gtk_webextension::DOMHTMLTableRowElementExt

pub trait DOMHTMLTableRowElementExt: 'static {
    fn delete_cell(&self, index: c_long) -> Result<(), Error>;
fn get_align(&self) -> Option<GString>;
fn get_bg_color(&self) -> Option<GString>;
fn get_cells(&self) -> Option<DOMHTMLCollection>;
fn get_ch(&self) -> Option<GString>;
fn get_ch_off(&self) -> Option<GString>;
fn get_row_index(&self) -> c_long;
fn get_section_row_index(&self) -> c_long;
fn get_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_property_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_bg_color_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_cells_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_row_index_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_section_row_index_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_cell(&self, index: c_long) -> Result<(), Error>

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

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

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

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

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

fn get_row_index(&self) -> c_long

fn get_section_row_index(&self) -> c_long

fn get_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_property_align_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_bg_color_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_cells_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_row_index_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_section_row_index_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<DOMHTMLTableRowElement>> DOMHTMLTableRowElementExt for O[src]

Loading content...