1 19 20 package jxl; 21 22 import jxl.format.CellFormat; 23 24 28 public interface Sheet 29 { 30 40 public Cell getCell(int column, int row); 41 42 47 public int getRows(); 48 49 54 public int getColumns(); 55 56 62 public Cell[] getRow(int row); 63 64 70 public Cell[] getColumn(int col); 71 72 77 public String getName(); 78 79 85 public boolean isHidden(); 86 87 93 public boolean isProtected(); 94 95 104 public Cell findCell(String contents); 105 106 118 public LabelCell findLabelCell(String contents); 119 120 125 public Hyperlink[] getHyperlinks(); 126 127 132 public Range[] getMergedCells(); 133 134 139 public SheetSettings getSettings(); 140 141 148 public CellFormat getColumnFormat(int col); 149 150 158 public int getColumnWidth(int col); 159 160 167 public CellView getColumnView(int col); 168 169 177 public int getRowHeight(int row); 178 179 186 public CellView getRowView(int row); 187 188 193 public int getNumberOfImages(); 194 195 201 public Image getDrawing(int i); 202 } 203 204 205 206 207 208 209 210 | Popular Tags |