currently ,we can set fore color for cell ,like
ICellExporter cellExporter = rowExporter.CreateCellExporter()
var color = System.Drawing.ColorTranslator.FromHtml("#0095ff");
cellExporter.SetFormat(new SpreadCellFormat() { ForeColor = new SpreadThemableColor(new SpreadColor(color.R, color.G, color.B))} );
but how to set background color for cell,i searched API but find nothing,anyone good idea?
thank you