CellRange.Exclude(CellRange) Method
Excludes the specified cell or cell range from the current range.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| other | CellRange | A CellRange object that specifies the cell or cell range to be excluded from the source range. |
Returns
| Type | Description |
|---|---|
| CellRange | A CellRange object that is the resulting contiguous or noncontiguous (union) range of cells. |
Remarks
Use the Exclude method to exclude a specific cell or cell range from the cell range that calls this method. Take into account the following special cases.
- If the other parameter of this method is null or a cell range you wish to exclude doesn’t intersect the source range, the entire source range will be returned.
- If you exclude all cells from the source range, the Exclude method will return null.
- If a cell or cell range you wish to exclude from the current range is located on another worksheet, the InvalidOperationException will be thrown.
The following example demonstrates how to use the Exclude method to exclude a specific cell range from the CellRange object.
using DevExpress.Spreadsheet;
using System.Drawing;
// ...
IWorkbook workbook = spreadsheetControl1.Document;
Worksheet worksheet = workbook.Worksheets["Sheet1"];
CellRange sourceRange = worksheet.Range["B2:E7"];
CellRange excludedRange = worksheet.Range["C4:D5"];
// Exclude the cell range "C4:D5" from the range "B2:E7".
CellRange resultantRange = sourceRange.Exclude(excludedRange);
// Fill the resultant cell range with the specified color.
resultantRange.Fill.BackgroundColor = Color.FromArgb(0xFA, 0xDA, 0xDD);
The result of code execution is shown in the image below.

To combine multiple cell ranges in a worksheet into a single complex range, use the CellRange.Union method.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Exclude(CellRange) 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.