Regalamiunsorriso/rus/WEB-INF/lib/jxl_src/jxl/Sheet.java

56 lines
1.1 KiB
Java
Raw Normal View History

2026-03-14 20:04:39 +01:00
package jxl;
import java.util.regex.Pattern;
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);
Cell findCell(String paramString, int paramInt1, int paramInt2, int paramInt3, int paramInt4, boolean paramBoolean);
Cell findCell(Pattern paramPattern, int paramInt1, int paramInt2, int paramInt3, int paramInt4, boolean paramBoolean);
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();
int[] getColumnPageBreaks();
}