0

I know how to set the color to red for example:

row.Interior.Color = Color.FromArgb(255, 0, 0);

But how to set the background to transparent?

Manuel Koch
  • 331
  • 2
  • 14

1 Answers1

0

It can be done by using System.Drawing.Color instead of Spreadsheetgear.Drawing.Color:

row.Interior.Color = System.Drawing.Color.Transparent;
Manuel Koch
  • 331
  • 2
  • 14