Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

50%
+0 −0
Q&A How to change the color of a cell to a user defined value while keeping its existing style using NPOI from F#?

The answer provided in the How to set the cell color to a user defined value using NPOI from F#? thread solves the problem of how to set the right properties using F#, but it uses a new ICellStyle ...

1 answer  ·  posted 4mo ago by toraritte‭  ·  last activity 4mo ago by toraritte‭

Question f# excel NPOI
#2: Post edited by user avatar toraritte‭ · 2024-01-11T16:08:13Z (4 months ago)
  • The answer provided in the [How to set the cell color to a user defined value using NPOI from F#?](https://stackoverflow.com/questions/77701061/how-set-the-cell-color-to-a-user-defined-value-using-npoi-from-f) thread solves the problem of how to set the right properties using F#, but it uses a new `ICellStyle` object and overwrites the existing style with it.
  • Re-writing the function (see below) to setting the existing cell's styling properties directly has a side effect of painting most of the cells in the sheet with the same color.
  • ```
  • let changeCellColorDirectly (cell: ICell) (rgb: byte array) =
  • let xssfCell = cell :?> NPOI.XSSF.UserModel.XSSFCell
  • match xssfCell.CellStyle with
  • | :? NPOI.XSSF.UserModel.XSSFCellStyle as xssfCellStyle ->
  • let color = new NPOI.XSSF.UserModel.XSSFColor(rgb)
  • xssfCellStyle.FillForegroundXSSFColor <- color
  • xssfCellStyle.FillPattern <- NPOI.SS.UserModel.FillPattern.SolidForeground
  • | _ -> failwith "'newCellStyle' cannot be cast to XSSFCellStyle"
  • ```
  • I presume that same-styled cells share the same `ICellStyle` object, so I tried to solve this with `ICellStyle`'s `CloneStyleFrom` method (see below), but the result was the same.
  • ```
  • let changeCellColorByCloning (cell: ICell) (rgb: byte array) =
  • let xssfCell: NPOI.XSSF.UserModel.XSSFCell = cell :?> NPOI.XSSF.UserModel.XSSFCell
  • let newCellStyle: NPOI.SS.UserModel.ICellStyle = xssfCell.Sheet.Workbook.CreateCellStyle()
  • newCellStyle.CloneStyleFrom(xssfCell.CellStyle)
  • match newCellStyle with
  • | :? NPOI.XSSF.UserModel.XSSFCellStyle as xssfCellStyle ->
  • let color = new NPOI.XSSF.UserModel.XSSFColor(rgb)
  • xssfCellStyle.FillForegroundXSSFColor <- color
  • xssfCellStyle.FillPattern <- NPOI.SS.UserModel.FillPattern.SolidForeground
  • | _ -> failwith "'newCellStyle' cannot be cast to XSSFCellStyle"
  • xssfCell.CellStyle <- newCellStyle
  • ```
  • The answer provided in the [How to set the cell color to a user defined value using NPOI from F#?](https://software.codidact.com/posts/290555) thread solves the problem of how to set the right properties using F#, but it uses a new `ICellStyle` object and overwrites the existing style with it.
  • Re-writing the function (see below) to setting the existing cell's styling properties directly has a side effect of painting most of the cells in the sheet with the same color.
  • ```
  • let changeCellColorDirectly (cell: ICell) (rgb: byte array) =
  • let xssfCell = cell :?> NPOI.XSSF.UserModel.XSSFCell
  • match xssfCell.CellStyle with
  • | :? NPOI.XSSF.UserModel.XSSFCellStyle as xssfCellStyle ->
  • let color = new NPOI.XSSF.UserModel.XSSFColor(rgb)
  • xssfCellStyle.FillForegroundXSSFColor <- color
  • xssfCellStyle.FillPattern <- NPOI.SS.UserModel.FillPattern.SolidForeground
  • | _ -> failwith "'newCellStyle' cannot be cast to XSSFCellStyle"
  • ```
  • I presume that same-styled cells share the same `ICellStyle` object, so I tried to solve this with `ICellStyle`'s `CloneStyleFrom` method (see below), but the result was the same.
  • ```
  • let changeCellColorByCloning (cell: ICell) (rgb: byte array) =
  • let xssfCell: NPOI.XSSF.UserModel.XSSFCell = cell :?> NPOI.XSSF.UserModel.XSSFCell
  • let newCellStyle: NPOI.SS.UserModel.ICellStyle = xssfCell.Sheet.Workbook.CreateCellStyle()
  • newCellStyle.CloneStyleFrom(xssfCell.CellStyle)
  • match newCellStyle with
  • | :? NPOI.XSSF.UserModel.XSSFCellStyle as xssfCellStyle ->
  • let color = new NPOI.XSSF.UserModel.XSSFColor(rgb)
  • xssfCellStyle.FillForegroundXSSFColor <- color
  • xssfCellStyle.FillPattern <- NPOI.SS.UserModel.FillPattern.SolidForeground
  • | _ -> failwith "'newCellStyle' cannot be cast to XSSFCellStyle"
  • xssfCell.CellStyle <- newCellStyle
  • ```
#1: Initial revision by user avatar toraritte‭ · 2024-01-11T16:06:00Z (4 months ago)
How to change the color of a cell to a user defined value while keeping its existing style using NPOI from F#?
The answer provided in the [How to set the cell color to a user defined value using NPOI from F#?](https://stackoverflow.com/questions/77701061/how-set-the-cell-color-to-a-user-defined-value-using-npoi-from-f) thread solves the problem of how to set the right properties using F#, but it uses a new `ICellStyle` object and overwrites the existing style with it.

Re-writing the function (see below) to setting the existing cell's styling properties directly has a side effect of painting most of the cells in the sheet with the same color.

```
let changeCellColorDirectly (cell: ICell) (rgb: byte array) =
    let xssfCell = cell :?> NPOI.XSSF.UserModel.XSSFCell
    match xssfCell.CellStyle with
    | :? NPOI.XSSF.UserModel.XSSFCellStyle as xssfCellStyle ->
        let color = new NPOI.XSSF.UserModel.XSSFColor(rgb)
        xssfCellStyle.FillForegroundXSSFColor <- color
        xssfCellStyle.FillPattern <- NPOI.SS.UserModel.FillPattern.SolidForeground
    | _ -> failwith "'newCellStyle' cannot be cast to XSSFCellStyle"
```

I presume that same-styled cells share the same `ICellStyle` object, so I tried to solve this with `ICellStyle`'s `CloneStyleFrom` method (see below), but the result was the same.

```
let changeCellColorByCloning (cell: ICell) (rgb: byte array) =
    let xssfCell: NPOI.XSSF.UserModel.XSSFCell = cell :?> NPOI.XSSF.UserModel.XSSFCell
    let newCellStyle: NPOI.SS.UserModel.ICellStyle = xssfCell.Sheet.Workbook.CreateCellStyle()
    newCellStyle.CloneStyleFrom(xssfCell.CellStyle)
    match newCellStyle with
    | :? NPOI.XSSF.UserModel.XSSFCellStyle as xssfCellStyle ->
        let color = new NPOI.XSSF.UserModel.XSSFColor(rgb)
        xssfCellStyle.FillForegroundXSSFColor <- color
        xssfCellStyle.FillPattern <- NPOI.SS.UserModel.FillPattern.SolidForeground
    | _ -> failwith "'newCellStyle' cannot be cast to XSSFCellStyle"
    xssfCell.CellStyle <- newCellStyle
```