Home

Bytescout.XLS for .NET
Screenshots

Click to view sample
Click to view sample
Click to view sample
Click to view sample
Click to view sample
Click to view sample
Click to view sample Click to view sample

Bytescout.XLS library for .NET

Download Free Trial Buy Now More Information

How to remove rows from existing XLS (Excel) document using Bytescout.XLS library

This source code describes how to remove rows from existing Excel (XLS) document and save changed document as new document file using Bytescout.XLS lib

Download example source code: bytescoutxls_removing_rows_from_existing_xls.zip (8 KB)

Source Excel document:

Source Excel document

Modified Excel document (row with Maggie name and full name was removed):

Modified Excel document

using System;
using System.Collections.Generic;
using System.Text;
using Bytescout.XLS;

namespace Removing_rows_from_existing_XLS
{
class Program
{
static void Main(string[] args)
{
// Open XLSDocument
XLSDocument document = new XLSDocument("AdvancedReport.xls");
// Get Worksheet
Worksheet worksheet = document.WorkBook.Worksheets[0];
// Remove row
worksheet.Rows.Delete(5, 5);
// Save document
document.SaveAs("AdvancedReport1.xls");
// Close XLSDocument
document.Close();
}
}
}

Download example source code: bytescoutxls_removing_rows_from_existing_xls.zip (8 KB)

Download Free Trial Buy Now More Information

Documentation online: view (separate window)

First steps tutorials:

Advanced Examples:
Products  |  Download  |  Purchase  |  Support  |  Contacts  |  Testimonials  |  News |  

ByteScout, 2003-2008. All other company and product names may be trademarks of their respective companies. Privacy Statement