HTMLTableRowElement.InsertCell

HTMLTableRowElement.InsertCell method

Insert an empty TD cell into this row. If index is -1 or equal to the number of cells, the new cell is appended.

public HTMLElement InsertCell(int index)
ParameterTypeDescription
indexInt32The place to insert the cell, starting from 0.

Return Value

The newly created cell.

Exceptions

exceptioncondition
DOMExceptionINDEX_SIZE_ERR: Raised if the specified index is greater than the number of cells or if the index is a negative number other than -1. @version DOM Level 2

See Also