1 19 20 package jxl.format; 21 22 25 public interface CellFormat 26 { 27 32 public Format getFormat(); 33 34 39 public Font getFont(); 40 41 46 public boolean getWrap(); 47 48 53 public Alignment getAlignment(); 54 55 60 public VerticalAlignment getVerticalAlignment(); 61 62 67 public Orientation getOrientation(); 68 69 77 public BorderLineStyle getBorder(Border border); 78 79 87 public BorderLineStyle getBorderLine(Border border); 88 89 99 public Colour getBorderColour(Border border); 100 101 107 public boolean hasBorders(); 108 109 114 public Colour getBackgroundColour(); 115 116 121 public Pattern getPattern(); 122 123 128 public int getIndentation(); 129 130 135 public boolean isShrinkToFit(); 136 137 142 public boolean isLocked(); 143 } 144 | Popular Tags |