Trait HTMLTableRowElementMethods

Source
pub(crate) trait HTMLTableRowElementMethods<D>
where D: DomTypes,
{ // Required methods fn RowIndex(&self) -> i32; fn SectionRowIndex(&self) -> i32; fn Cells(&self) -> Root<Dom<<D as DomTypes>::HTMLCollection>>; fn InsertCell( &self, index: i32, _can_gc: CanGc, ) -> Result<Root<Dom<<D as DomTypes>::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<<D as DomTypes>::HTMLCollection>>

Source

fn InsertCell( &self, index: i32, _can_gc: CanGc, ) -> Result<Root<Dom<<D as DomTypes>::HTMLElement>>, Error>

Source

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

Source

fn BgColor(&self) -> DOMString

Source

fn SetBgColor(&self, value: DOMString)

Implementors§