first commit
This commit is contained in:
33
hrmsEjb/jxl/format/CellFormat.java
Normal file
33
hrmsEjb/jxl/format/CellFormat.java
Normal 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();
|
||||
}
|
Reference in New Issue
Block a user