Hello,
I did set a style to a cell like so:
var ods = new Workbook(OdsPath);
var highlightStyle = ods.GetNamedStyle(“Highlight”);
var flag = new StyleFlag();
flag.All = true;var cell = blabla get the cell
cell.SetStyle(highlightStyle);
How can I unset the style so that it uses back the default style of the sheet?
I tried doing:
cell.SetStyle(ods.DefaultStyle);
Neither are working, it’s not setting the default style.
Any ideas?