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

DeleteMode Enum

Specifies how to delete cells from a worksheet.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public enum DeleteMode

#Members

Name Description
ShiftCellsLeft

When deleting cells from a worksheet, other cells in the same row are shifted to the left.

ShiftCellsUp

When deleting cells from a worksheet, other cells in the same column are shifted up.

EntireRow

Entire rows containing the specified cell range are deleted.

EntireColumn

Entire columns containing the specified cell range are deleted.

#Remarks

The DeleteMode enumeration values are used by the Worksheet.DeleteCells method. For details, refer to the How to: Delete a Cell or Range of Cells and How to: Delete a Row or Column from a Worksheet examples.

See Also