Question. Is it possible to add the Column_Delete and the DeleteComment function to the forge component?
C# Column_Delete:
ExcelWorksheet ws;
ws = (ExcelWorksheet)ssWorksheet;
ws.DeleteColumn(ssColumn);
C# DeleteComment
ExcelWorksheet ws;
ws = (ExcelWorksheet)ssWorksheet;
ws.Comments.Remove(ws.Cells[ssRow, ssColumn].Comment);