Use of IExcelStyle in version 2.5

2
What to use instead of IExcelStyle in Mendix 2.5 to create a styleobject Example: IExcelStyle excelStyle; excelStyle.setBackGroundColor(Color.BLUE); excelStyle.setBorderColor(BorderSide.ALL, Color.AQUA); cel1.excelGrid.setDefaultStyle(excelStyle);
asked
1 answers
0

As far as I know you can still use it, but to obtain it you have to get it from the cell itself (getStyle()) instead of constructing it.

answered