Skip to main content
A newer version of this page is available.
All docs
V18.2
Row

RangeExtensions.Select(Range) Method

Selects the cell range.

Namespace: DevExpress.Spreadsheet

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

Declaration

public static void Select(
    this Range range
)

Parameters

Name Type Description
range Range

A Range object specifying the cell range to be selected.

Remarks

The Select method is an extension method of the Range 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