1 12 13 package org.w3c.dom.html; 14 15 import org.w3c.dom.DOMException ; 16 17 22 public interface HTMLTableSectionElement extends HTMLElement { 23 27 public String getAlign(); 28 public void setAlign(String align); 29 30 34 public String getCh(); 35 public void setCh(String ch); 36 37 41 public String getChOff(); 42 public void setChOff(String chOff); 43 44 48 public String getVAlign(); 49 public void setVAlign(String vAlign); 50 51 54 public HTMLCollection getRows(); 55 56 69 public HTMLElement insertRow(int index) 70 throws DOMException ; 71 72 81 public void deleteRow(int index) 82 throws DOMException ; 83 84 } 85 86 | Popular Tags |