I want to put an html string to a workbook cell (with some html element contains rgba in css style) ,and then I use HtmlString, but this operate throw a error about rgba(255 is not a valid value for Int32
The version I have using is Aspose.Cells 19.4.0
//Datatable data
for (int i = 0; i < rows; i++)
{
for (int k = 0; k < columns; k++)
{
cells[1 + i, k].HtmlString = data.Rows[i][k].ToString();
cells[1 + i, k].SetStyle(style);
}
}
I want to put an html string to a workbook cell (with some html element contains rgba in css style) ,and then I use HtmlString, but this operate throw a error about rgba(255 is not a valid value for Int32
The version I have using is Aspose.Cells 19.4.0