You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@poi.apache.org by Huw Coxon <ma...@gmail.com> on 2020/02/24 17:27:03 UTC

setFillForeground to an XSSFColor

I'm having real problems setting the color of the Fill foreground for a cell using Apache POI commons
code. I was under the impression from the javadoc that this method was available:

void	setFillForegroundColor(short fg)
Set the foreground fill color as a indexed color value

Note: Ensure Foreground color is set prior to background color.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@poi.apache.org
For additional commands, e-mail: user-help@poi.apache.org


Re: setFillForeground to an XSSFColor

Posted by Dominik Stadler <do...@gmx.at>.
Hi,

please try to set the fill pattern via

style.setFillPattern(FillPatternType.SOLID_FOREGROUND);

See also
http://poi.apache.org/components/spreadsheet/quick-guide.html#FillsAndFrills

Thanks... Dominik.


On Mon, Feb 24, 2020 at 6:27 PM Huw Coxon <ma...@gmail.com> wrote:

>
> I'm having real problems setting the color of the Fill foreground for a
> cell using Apache POI commons
> code. I was under the impression from the javadoc that this method was
> available:
>
> void    setFillForegroundColor(short fg)
> Set the foreground fill color as a indexed color value
>
> Note: Ensure Foreground color is set prior to background color.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@poi.apache.org
> For additional commands, e-mail: user-help@poi.apache.org
>
>