Worksheet.ColumnIndexToName method Issue

We were using the following method with some old version of code and aspose DLL.
Aspose.Cells.GridDesktop.Worksheet.ColumnIndexToName.

Recently we migrated to use the latest aspose dll and license files. Can someone correct us on what we should use instead of the above method as it is no longer supported.

We actually did not change our code from a long time so we are not getting much help.

Hi,


Please use GridCells.ColumnIndexToName() method in the newer APIs set of Aspose.Cells.GridDesktop control.
e.g
Sample code:
<span class=“kwrd” style=“color: rgb(0, 0, 255); font-family: “Courier New”, Consolas, Courier, monospace; font-size: small; white-space: pre;”>string<span style=“font-family: “Courier New”, Consolas, Courier, monospace; font-size: small; white-space: pre; background-color: rgb(255, 255, 255);”> colName = Aspose.Cells.GridDesktop.Data.GridCells.ColumnIndexToName(1);

Thank you.