B
Barry
Hi
In C# i can set the backcolor of a cell like this
worksheet.get_Range("B1:B1", Type.Missing).Interior.ColorIndex = 1;
I need to set the color without using ColorIndex, ie any color using
Color.FromARGB(205, 255, 255)
I tried the following
worksheet.get_Range("B1:B1", Type.Missing).Interior.Color =
Color.FromARGB(205,255,255);
But it show an error.
Does someone know how to acheve this.
TIA
Barry
In C# i can set the backcolor of a cell like this
worksheet.get_Range("B1:B1", Type.Missing).Interior.ColorIndex = 1;
I need to set the color without using ColorIndex, ie any color using
Color.FromARGB(205, 255, 255)
I tried the following
worksheet.get_Range("B1:B1", Type.Missing).Interior.Color =
Color.FromARGB(205,255,255);
But it show an error.
Does someone know how to acheve this.
TIA
Barry