50 lines
840 B
Java
50 lines
840 B
Java
package jxl;
|
|
|
|
import jxl.format.CellFormat;
|
|
|
|
public interface Sheet {
|
|
Cell getCell(int paramInt1, int paramInt2);
|
|
|
|
Cell getCell(String paramString);
|
|
|
|
int getRows();
|
|
|
|
int getColumns();
|
|
|
|
Cell[] getRow(int paramInt);
|
|
|
|
Cell[] getColumn(int paramInt);
|
|
|
|
String getName();
|
|
|
|
boolean isHidden();
|
|
|
|
boolean isProtected();
|
|
|
|
Cell findCell(String paramString);
|
|
|
|
LabelCell findLabelCell(String paramString);
|
|
|
|
Hyperlink[] getHyperlinks();
|
|
|
|
Range[] getMergedCells();
|
|
|
|
SheetSettings getSettings();
|
|
|
|
CellFormat getColumnFormat(int paramInt);
|
|
|
|
int getColumnWidth(int paramInt);
|
|
|
|
CellView getColumnView(int paramInt);
|
|
|
|
int getRowHeight(int paramInt);
|
|
|
|
CellView getRowView(int paramInt);
|
|
|
|
int getNumberOfImages();
|
|
|
|
Image getDrawing(int paramInt);
|
|
|
|
int[] getRowPageBreaks();
|
|
}
|