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

Range.GetRangeWithAbsoluteReference() Method

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

Namespace: DevExpress.Spreadsheet

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

Declaration

Range GetRangeWithAbsoluteReference()

Returns

Type Description
Range

A Range object with the absolute reference.

Remarks

Use the Range.GetRangeWithRelativeReference method to convert the source range to the range with the relative reference.

Example

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

using DevExpress.Spreadsheet;
// ...

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

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

// Return the range with the relative range reference - "A1:B5".
Range relRange = range.GetRangeWithRelativeReference();

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