Back to Devexpress

WorksheetCollection.RemoveAt(Int32) Method

officefileapi-devexpress-dot-spreadsheet-dot-worksheetcollection-dot-removeat-x28-system-dot-int32-x29.md

latest7.8 KB
Original Source

WorksheetCollection.RemoveAt(Int32) Method

Removes the worksheet at the specified position from the collection.

Namespace : DevExpress.Spreadsheet

Assembly : DevExpress.Spreadsheet.v25.2.Core.dll

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
void RemoveAt(
    int index
)
vb
Sub RemoveAt(
    index As Integer
)

Parameters

NameTypeDescription
indexInt32

An integer that is the zero-based index of a worksheet to be deleted from a workbook.

|

Remarks

The RemoveAt method disposes of an element removed from the collection. To remove the specified worksheet from the collection, use the WorksheetCollection.Remove method. You can also hide worksheets (see the How to: Show and Hide a Worksheet topic for details).

Note

A workbook must always contain at least one visible worksheet.

To add new worksheets to a workbook, use the WorksheetCollection.Add or WorksheetCollection.Insert method.

Example

This example demonstrates how to remove a worksheet from a workbook by calling the WorksheetCollection.Remove or WorksheetCollection.RemoveAt method of the WorksheetCollection object that is accessed via the Workbook.Worksheets property.

View Example

csharp
// Delete the "Sheet2" worksheet from the workbook.
workbook.Worksheets.Remove(workbook.Worksheets["Sheet2"]);

// Delete the first worksheet from the workbook.
workbook.Worksheets.RemoveAt(0);
vb
' Delete the "Sheet2" worksheet from the workbook.
workbook.Worksheets.Remove(workbook.Worksheets("Sheet2"))

' Delete the first worksheet from the workbook.
workbook.Worksheets.RemoveAt(0)

The following code snippets (auto-collected from DevExpress Examples) contain references to the RemoveAt(Int32) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-spreadsheet-import-data-from-a-datatable-instance/CS/Form1.cs#L17

csharp
for (int i = count - 1; i >= 1; i--)
    workbook.Worksheets.RemoveAt(i);
workbook.Worksheets[0].Name = "Default";

winforms-spreadsheetcontrol-api-part1/CS/SpreadsheetControl/SpreadsheetActions/WorksheetActions.cs#L59

csharp
// Delete the first worksheet from the workbook.
workbook.Worksheets.RemoveAt(0);
#endregion #DeleteWorksheet

wpf-spreadsheetcontrol-api-part-1/CS/SpreadsheetControl_WPF_API/SpreadsheetActions/WorksheetActions.cs#L70

csharp
// Delete the first worksheet from the workbook.
workbook.Worksheets.RemoveAt(0);
#endregion #DeleteWorksheet

spreadsheet-document-api-examples-part1/CS/SpreadsheetExamples/SpreadsheetActions/WorksheetActions.cs#L57

csharp
// Delete the first worksheet.
workbook.Worksheets.RemoveAt(0);
#endregion #DeleteWorksheet

winforms-spreadsheet-import-data-from-a-datatable-instance/VB/Form1.vb#L19

vb
For i As Integer = count - 1 To 1 Step -1
    workbook.Worksheets.RemoveAt(i)
Next i

winforms-spreadsheetcontrol-api-part1/VB/SpreadsheetControl/SpreadsheetActions/WorksheetActions.vb#L62

vb
' Delete the first worksheet from the workbook.
            workbook.Worksheets.RemoveAt(0)
' #End Region ' #DeleteWorksheet

wpf-spreadsheetcontrol-api-part-1/VB/SpreadsheetControl_WPF_API/SpreadsheetActions/WorksheetActions.vb#L66

vb
' Delete the first worksheet from the workbook.
            workbook.Worksheets.RemoveAt(0)
' #End Region ' #DeleteWorksheet

spreadsheet-document-api-examples-part1/VB/SpreadsheetExamples/SpreadsheetActions/WorksheetActions.vb#L62

vb
' Delete the first worksheet.
            workbook.Worksheets.RemoveAt(0)
#End Region ' #DeleteWorksheet

See Also

Remove(Worksheet)

How to: Access a Worksheet

How to: Add a New Worksheet

How to: Delete a Worksheet

How to: Rename a Worksheet

How to: Move a Worksheet to another Location

How to: Show and Hide a Worksheet

Worksheets in Spreadsheet Documents

WorksheetCollection Interface

WorksheetCollection Members

DevExpress.Spreadsheet Namespace