Represents a range of indices in a spreadsheet, including the start index, end index, and an offset.
ValueType.Equals
ValueType.GetHashCode
ValueType.ToString
Namespace: Radzen.Blazor.Spreadsheet
Assembly: Radzen.Blazor.dll
public struct IndexRangeRepresents a range of indices in a spreadsheet, including the start index, end index, and an offset.
public IndexRange(int start, int end, double offset)
| Type | Name | Description |
|---|---|---|
| int | start | |
| int | end | |
| double | offset |
The end index of the range, inclusive.
public int End { get; }
| Type | Description |
|---|---|
| int | The end index of the range, inclusive. |
The offset of the range, which can be used to adjust the starting position of the range.
public double Offset { get; }
| Type | Description |
|---|---|
| double | The offset of the range, which can be used to adjust the starting position of the range. |
The start index of the range, inclusive.
public int Start { get; }
| Type | Description |
|---|---|
| int | The start index of the range, inclusive. |