1 21 32 33 package org.w3c.dom.html2; 34 35 import org.w3c.dom.DOMException ; 36 37 41 public interface HTMLTableRowElement extends HTMLElement { 42 51 public int getRowIndex(); 52 53 59 public int getSectionRowIndex(); 60 61 65 public HTMLCollection getCells(); 66 67 71 public String getAlign(); 72 76 public void setAlign(String align); 77 78 82 public String getBgColor(); 83 87 public void setBgColor(String bgColor); 88 89 93 public String getCh(); 94 98 public void setCh(String ch); 99 100 104 public String getChOff(); 105 109 public void setChOff(String chOff); 110 111 115 public String getVAlign(); 116 120 public void setVAlign(String vAlign); 121 122 134 public HTMLElement insertCell(int index) 135 throws DOMException ; 136 137 147 public void deleteCell(int index) 148 throws DOMException ; 149 150 } 151 | Popular Tags |