diff options
author | Nick Burch <nick@apache.org> | 2009-01-06 20:49:02 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2009-01-06 20:49:02 +0000 |
commit | 5d1f44e314d2ecbe4b2a72d90a2396da1b704c74 (patch) | |
tree | b12ee0720ae1594845e1c4e7db021edfc368602f /src/ooxml/interfaces-jdk15 | |
parent | 899061e647b516e62e836685ad540e3002c7f1ed (diff) | |
download | poi-5d1f44e314d2ecbe4b2a72d90a2396da1b704c74.tar.gz poi-5d1f44e314d2ecbe4b2a72d90a2396da1b704c74.zip |
Support for reading HSSF column styles
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@732112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/ooxml/interfaces-jdk15')
-rw-r--r-- | src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Sheet.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Sheet.java b/src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Sheet.java index 9650db2009..a6a1662c53 100644 --- a/src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Sheet.java +++ b/src/ooxml/interfaces-jdk15/org/apache/poi/ss/usermodel/Sheet.java @@ -177,6 +177,19 @@ public interface Sheet extends Iterable<Row> { * @param height default row height */ void setDefaultRowHeightInPoints(float height); + + /** + * Returns the CellStyle that applies to the given + * (0 based) column, or null if no style has been + * set for that column + */ + public CellStyle getColumnStyle(int column); + + /** + * Sets the CellStyle that applies to the given + * (0 based) column. + */ +// public CellStyle setColumnStyle(int column, CellStyle style); /** * Adds a merged region of cells (hence those cells form one) |