first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package jxl.format;
public interface CellFormat {
Format getFormat();
Font getFont();
boolean getWrap();
Alignment getAlignment();
VerticalAlignment getVerticalAlignment();
Orientation getOrientation();
BorderLineStyle getBorder(Border paramBorder);
BorderLineStyle getBorderLine(Border paramBorder);
Colour getBorderColour(Border paramBorder);
boolean hasBorders();
Colour getBackgroundColour();
Pattern getPattern();
int getIndentation();
boolean isShrinkToFit();
boolean isLocked();
}