Back to Devexpress

CellRange.GetRangeWithRelativeReference() Method

officefileapi-devexpress-dot-spreadsheet-dot-cellrange-d1585485.md

latest2.8 KB
Original Source

CellRange.GetRangeWithRelativeReference() Method

Returns the copy of the source range with its reference replaced by the relative reference.

Namespace : DevExpress.Spreadsheet

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
CellRange GetRangeWithRelativeReference()
vb
Function GetRangeWithRelativeReference As CellRange

Returns

TypeDescription
CellRange

A CellRange object with the relative reference.

|

Remarks

Use the CellRange.GetRangeWithAbsoluteReference method to convert the source range to the range with the absolute reference.

Example

This example demonstrates how to use the CellRange.GetRangeWithAbsoluteReference and CellRange.GetRangeWithRelativeReference methods to get a range object with the source range reference converted to the absolute or relative reference, respectively.

csharp
using DevExpress.Spreadsheet;
// ...

Worksheet worksheet = spreadsheetControl.Document.Worksheets[0];
CellRange range = worksheet.Range["A$1:B$5"];

// Return the range with the absolute range reference - "$A$1:$B$5".
CellRange absRange = range.GetRangeWithAbsoluteReference();

// Return the range with the relative range reference - "A1:B5".
CellRange relRange = range.GetRangeWithRelativeReference();
vb
Imports DevExpress.Spreadsheet
' ...

Dim worksheet As Worksheet = spreadsheetControl.Document.Worksheets(0)
Dim range As CellRange = worksheet.Range("A$1:B$5")

' Return the range with the absolute range reference - "$A$1:$B$5".
Dim absRange As CellRange = range.GetRangeWithAbsoluteReference()

' Return the range with the relative range reference - "A1:B5".
Dim relRange As CellRange = range.GetRangeWithRelativeReference()

See Also

GetRangeWithAbsoluteReference()

CellRange Interface

CellRange Members

DevExpress.Spreadsheet Namespace