// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/ namespace Aspose.Cells.Cloud.SDK.Example { using Aspose.Cells.Cloud.SDK.Api; using Aspose.Cells.Cloud.SDK.Model; using Aspose.Cells.Cloud.SDK.Request; using System; using System.Collections.Generic; public partial class CellsApiExample { public void DeleteWorksheetPivotTablesExample() { CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret")); DeleteWorksheetPivotTablesRequest request = new DeleteWorksheetPivotTablesRequest { name = "Book1.xlsx", sheetName = "Sheet4", folder = "TestData/In" }; cellsApi.DeleteWorksheetPivotTables(request); } } }