elemental2.dom.HTMLTableRowElement Maven / Gradle / Ivy
package elemental2.dom;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class HTMLTableRowElement extends HTMLElement {
public String align;
public String bgColor;
public HTMLCollection cells;
public String ch;
public String chOff;
public int rowIndex;
public int sectionRowIndex;
public String vAlign;
public native void deleteCell(int index);
public native HTMLElement insertCell(int index);
}