From 5d1f44e314d2ecbe4b2a72d90a2396da1b704c74 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Tue, 6 Jan 2009 20:49:02 +0000 Subject: Support for reading HSSF column styles git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@732112 13f79535-47bb-0310-9956-ffa450edef68 --- .../interfaces-jdk15/org/apache/poi/ss/usermodel/Sheet.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/ooxml/interfaces-jdk15') 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 { * @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) -- cgit v1.2.3