Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Sheet.MoveAfter(String) Method

Moves the current sheet after the specified sheet in a workbook.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

void MoveAfter(
    string sheetName
)

#Parameters

Name Type Description
sheetName String

A string specifying the name of the sheet after which the current sheet should be inserted. If a sheet under the specified name is not found, an exception occurs.

#Remarks

The table below lists methods of the Sheet object that allow you to rearrange worksheets and chart sheets within a workbook.

Method Description
Sheet.MoveBefore Moves the sheet before the specified sheet in a workbook.
MoveAfter Moves the sheet after the specified sheet in a workbook.
Sheet.MoveToBeginning Moves the sheet to the first position within a workbook.
Sheet.MoveToEnd Moves the sheet to the last position within a workbook.

You can also use the Worksheet.Move and ChartSheet.Move methods to relocate worksheets and chart sheet within the WorksheetCollection and ChartSheetCollection collections, respectively.

See Also