Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

RangeExtensions.Select(CellRange) Method

Selects the cell range.

Namespace: DevExpress.Spreadsheet

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

Declaration

public static void Select(
    this CellRange range
)

Parameters

Name Type Description
range CellRange

A CellRange object specifying the cell range to be selected.

Remarks

The Select method is an extension method of the CellRange object that is called by using the instance method syntax.

Another way to select cells in the worksheet is to use the Worksheet.Selection, Worksheet.SelectedCell, Worksheet.SetSelectedRanges and Worksheet.GetSelectedRanges members of the worksheet object (see the How to: Obtain Selected Range and Active Cell example).

See Also