hi.
When exporting to Excel, there is a problem of defining the font color.
//Solution from SYncfusion answers found through googling
=> a problem that has arisen
The format 'ColorTranslator' exists in both 'system.drawing.Commom' and '
system.drawing.Primitives'.
//The method that I applied.
sheet.Range[iRow, i + 11].CellStyle.Font.RGBColor = Color.FromArgb(255, 0, 0);
Both methods apply cellstyle, but the problem with Font color is not solved.
Is there a way?
regards.