All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental2.dom.HTMLTableElement Maven / Gradle / Ivy

package elemental2.dom;

import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;

@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class HTMLTableElement extends HTMLElement {
  public String align;
  public String bgColor;
  public String border;
  public HTMLTableCaptionElement caption;
  public String cellPadding;
  public String cellSpacing;
  public String frame;
  public HTMLCollection rows;
  public String rules;
  public String summary;
  public HTMLCollection tBodies;
  public HTMLTableSectionElement tFoot;
  public HTMLTableSectionElement tHead;
  public String width;

  public native HTMLElement createCaption();

  public native HTMLElement createTFoot();

  public native HTMLElement createTHead();

  public native void deleteCaption();

  public native HTMLElement deleteRow(int index);

  public native void deleteTFoot();

  public native void deleteTHead();

  public native HTMLElement insertRow();

  public native HTMLElement insertRow(int index);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy