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
1 changed files with 7 additions and 2 deletions

View File

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