Foreground color of the whole excel worksheet

Hi Laurence,

Are there any ways to set the foreground of the whole excel worksheet to white color?

Thanks and Regards,

Johnson

Hi Johnson,

You can try this:

Style style = excel.DefaultStyle;
style.ForegroundColor = Color.White;
excel.DefaultStyle = style;