Hi,
I am having trouble with setting the Color setting an a GridDesktop Style object. I am running code below but when debugging on the 4th line the Color property of the Style object is showing as empty, even though i set it to red in the line above.
I’m using version 19.2
Thanks, Zoe
Aspose.Cells.GridDesktop.GridCell cell = myWorksheet.Cells[“A1”];
Aspose.Cells.GridDesktop.Style style = cell.GetStyle();
style.Color = Color.Red;
cell.SetStyle(style);