C# API to clear blank rows on local Microsoft Excel and OpenOffice Calc spreadsheet
C# Clear to clear blank rows on local Microsoft Excel and OpenOffice Calc spreadsheet
Clear blank rows on local Microsoft Excel and OpenOffice Calc spreadsheet - C# REST API
API Request:
POST
https://api.aspose.cloud/v3.0/cells/clear
Clearing blank rows on local Microsoft Excel and OpenOffice Calc spreadsheet is a complex task. Clearing blank rows on local Microsoft Excel and OpenOffice Calc spreadsheet transitions is performed by our C# SDK while maintaining the source spreadsheet's main structural and logical content. Our C# library is a professional solution to Clear blank rows on local Microsoft Excel and OpenOffice Calc spreadsheet online. This Cloud SDK gives C# developers powerful functionality and perfect API.
Net code for clearing blank rows on local spreadsheets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; | |
using System.Collections.Generic; | |
using System.IO; | |
public partial class CellsApiExample | |
{ | |
public void PostClearObjectsBlankrowsExample() | |
{ | |
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret")); | |
IDictionary<string, Stream> mapFiles = new Dictionary<string, Stream>(); | |
mapFiles.Add("Book1.xlsx", File.OpenRead(@"TestData\Book1.xlsx")); | |
mapFiles.Add("myDocument.xlsx", File.OpenRead(@"TestData\myDocument.xlsx")); | |
PostClearObjectsRequest request = new PostClearObjectsRequest { File = mapFiles, objecttype = "blankrows", outFormat = "pdf" }; | |
cellsApi.PostClearObjects(request); | |
} | |
} | |
} |
How to use C# API to clear blank rows
- Create an account at Dashboard to get free API quota & authorization details
- Initialize CellsApi with Client Id, Client Secret, Base URL & API version
- Call PostClearObjects method to get the resultant stream
System Requirements
- NET Framework 4.5.2 or newer
- Net Standard 2.0 or newer