// 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.Request; using System; public partial class CellsApiExample { public void DeleteWorksheetDateFilterExample() { CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret")); DeleteWorksheetDateFilterRequest request = new DeleteWorksheetDateFilterRequest { name = "Book1.xlsx", sheetName = "Sheet1", fieldIndex = 1, dateTimeGroupingType = "Day", year = 2010, month = 10, day = 1, hour = 1, minute = 1, second = 1, folder = "TestData/In" }; cellsApi.DeleteWorksheetDateFilter(request); } } }