using Aspose.Cells.Cloud.SDK.Api; using Aspose.Cells.Cloud.SDK.Model; using Aspose.Cells.Cloud.SDK.Request; using System; using System.IO; using System.Collections.Generic; CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret")); string remoteFolder = "TestData/In"; string localName = "Book1.xlsx"; string remoteName = "Book1.xlsx"; var request = new GetWorksheetCommentRequest( name: remoteName, sheetName: "Sheet1", cellName: "B3", folder: remoteFolder, storageName: "" ); cellsApi.GetWorksheetComment(request);