Column Text!

Hi,

Is there any function that returns the title of any given column, for exemple:

GetColumnTitle(Row,Col) = "C" or ("D1")

Hi,

Thanks for considering Aspose.

Please use WebCells.ColumnIndexToName() static method.

E.g.,

string colname = WebCells.ColumnIndexToName(2);

Thank you.