A new GrapeCity Documents for Excel (GcExcel) service pack is now available. The 1.5.0.3 service pack offers new improvements, APIs, and utility methods.
Download the GcExcel Service Pack 1.5.0.3.
GcExcel is now faster than ever, with several major performance enhancements (that you can start using today). GcExcel’s enhanced performance includes:
For more information, take a look at our Performance Enhancement Blog.
CellInfo class
While working with a range of cells, several customers have expressed the need to convert columns/rows index to expressions.
We've added a new feature that allows GcExcel to add a new utility class in order to work with a range of cells:
public class CellInfo
{
public static string RowIndexToName(int index);
public static int RowNameToIndex(string name);
public static string ColumnIndexToName(int index);
public static int ColumnNameToIndex(string name);
public static string CellIndexToName(int row, int column);
public static void CellNameToIndex(string name, out int row, out int column);
}
We've added new demos to show the various ranges of operations that can be performed with GcExcel. Here's a look at the new Range Operations demos: