Skip to main content
All docs
V19.1
.NET Framework 4.5.2+
Row

Range.Offset(Int32, Int32) Method

Returns the cell range that is offset by the specified number of rows and columns from the current range.

Namespace: DevExpress.Spreadsheet

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

Declaration

Range Offset(
    int rowCount,
    int columnCount
)

Parameters

Name Type Description
rowCount Int32

An integer that specifies the number of rows by which the cell range should be offset (positive value - range is offset down, negative value - range is offset up, zero - range is not offset vertically).

columnCount Int32

An integer that specifies the number of columns by which the cell range should be offset (positive value - range is offset to the right, negative value - range is offset to the left, zero - range is not offset horizontally).

Returns

Type Description
Range

A Range object that specifies the copy of the current range (by size) which is offset.

Remarks

Use the Offset method to access the cell range of the same size as the current range which is shifted by the specified number of rows and columns.

SpreadsheetControl_Range_Offset

The following code snippets (auto-collected from DevExpress Examples) contain references to the Offset(Int32, Int32) 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.

See Also