Patch applied

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352146 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-03-04 11:36:50 +00:00
parent 2c71e35be2
commit 241e21042e

View File

@ -832,8 +832,13 @@ public class HSSFCellStyle
* <p> * <p>
* For example: * For example:
* <pre> * <pre>
* cs.setFillPattern( (short) 1 ); * cs.setFillPattern(HSSFCellStyle.FINE_DOTS );
* cs.setFillBackgroundColor(HSSFColor.RED.index); * cs.setFillBackgroundColor(HSSFCellStyle.RED);
* </pre>
* or, for the special case of SOLID_FILL:
* <pre>
* cs.setFillPattern(HSSFCellStyle.SOLID_FILL );
* cs.setFillForgroundColor(HSSFSeCellStyle.RED);
* </pre> * </pre>
* You will need to set the fill style first. * You will need to set the fill style first.
* *