pub trait HTMLTableRowElementMethods {
    // Required methods
    fn RowIndex(&self) -> i32;
    fn SectionRowIndex(&self) -> i32;
    fn Cells(&self) -> Root<Dom<HTMLCollection>>;
    fn InsertCell(&self, index: i32) -> Result<Root<Dom<HTMLElement>>, Error>;
    fn DeleteCell(&self, index: i32) -> Result<(), Error>;
    fn BgColor(&self) -> DOMString;
    fn SetBgColor(&self, value: DOMString);
}

Required Methods§

source

fn RowIndex(&self) -> i32

source

fn SectionRowIndex(&self) -> i32

source

fn Cells(&self) -> Root<Dom<HTMLCollection>>

source

fn InsertCell(&self, index: i32) -> Result<Root<Dom<HTMLElement>>, Error>

source

fn DeleteCell(&self, index: i32) -> Result<(), Error>

source

fn BgColor(&self) -> DOMString

source

fn SetBgColor(&self, value: DOMString)

Implementors§