Aspose.Cells.GridWeb - Upgrading the version from 2.4.2.2007 to 22.5.0.0 - Getting the issue in Aspose.Cells.GridWeb.Worksheet

My team upgrading the version from 2.4 to 22.5 to fix the Chrome browser issues. Below GridWeb properties (Worksheet) throwing following error. What is the equivalent property we can replace in new version.

Issue: 1
protected Aspose.Cells.GridWeb.Worksheet wksItems;
protected Aspose.Cells.GridWeb.Worksheet wksCustomers;

Error Details:
Compiler Error CS0234: The type or namespace name ‘name’ does not exist in the namespace ‘namespace’ (are you missing an assembly reference?)

WebWorksheet wks = this.acgwHeader.WebWorksheets[0];

Issue: 2
wks.EnableRowAddDelete = false;
//EnableROwAddDelete throwing the error in v22.5 when upgrading from v2.4

Issue: 3
Hyperlink hlinkVendorId = wks.Hyperlinks.AddHyperlink(row, 2);
//AddHyperlink throwing the error in v22.5 when upgrading from v2.4

Issue: 4
acgwItemDetail.InitializeNewBindRow += new InitializeNewBindRowHandler(acgwItemDetail_InitializeNewBindRow);
//InitializeNewBindRow throwing the error in v22.5 when upgrading from v2.4

Issue: 5
DataRowView info = acgwHeader.WebWorksheets[0].GetRowBindObject(cell.Row) as DataRowView ;
//GetRowBindObject throwing the error in v22.5 when upgrading from v2.4

Issue: 6
this.acgwVendorUOMExceptions.CustomCommand += new Aspose.Cells.GridWeb.CustomCommandEventHandler(acgwVendorUOMExceptions_CustomCommand);
//CustomCommandEventHandler throwing the error in v22.5 when upgrading from v2.4

Issue: 7
this.acgwVendorUOMExceptions.SaveCommand += new Aspose.Cells.GridWeb.WorkbookEventHandler(acgwVendorUOMExceptions_SaveCommand);
this.acgwVendorUOMExceptions.PageIndexChanged += new Aspose.Cells.GridWeb.WorkbookEventHandler(acgwVendorUOMExceptions_PageIndexChanged);

//WorkbookEventHandler throwing the error in v22.5 when upgrading from v2.4

Thanks in advance.

@ncedeno,

Please go through the Aspose.Cells.GridWeb Docs and API Reference Pages (Aspose.Cells For .NET Documentation.chm help file that is included in the release archive when you install the Aspose.Cells for .NET Package) for reference first. Also, try downloading the VS.NET Examples project for Aspose.Cells.GridWeb and open it in VS.NET to get to know the newer APIs for your reference. After going through the proposed docs and artifacts, you may devise or update your code segments accordingly.