1 12 13 package org.w3c.dom.html; 14 15 import org.w3c.dom.DOMException ; 16 17 21 public interface HTMLTableRowElement extends HTMLElement { 22 29 public int getRowIndex(); 30 31 36 public int getSectionRowIndex(); 37 38 41 public HTMLCollection getCells(); 42 43 47 public String getAlign(); 48 public void setAlign(String align); 49 50 54 public String getBgColor(); 55 public void setBgColor(String bgColor); 56 57 61 public String getCh(); 62 public void setCh(String ch); 63 64 68 public String getChOff(); 69 public void setChOff(String chOff); 70 71 75 public String getVAlign(); 76 public void setVAlign(String vAlign); 77 78 88 public HTMLElement insertCell(int index) 89 throws DOMException ; 90 91 99 public void deleteCell(int index) 100 throws DOMException ; 101 102 } 103 104 | Popular Tags |