Class RVExcelRange
Class defining the range that should be used when loading data from an Excel sheet.
Inheritance
System.Object
RVExcelRange
Namespace: Reveal.Sdk.Data.Excel
Assembly: Infragistics.Reveal.DataLayer.dll
Syntax
public class RVExcelRange : Object
Constructors
RVExcelRange(Int32, Int32, Int32, Int32)
Creates an Excel range with the given starting position and dimensions.
Declaration
public RVExcelRange(int locX, int locY, int lenX, int lenY)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | locX | The zero-based column index of the top-left cell. |
| System.Int32 | locY | The zero-based row index of the top-left cell. |
| System.Int32 | lenX | The number of columns in the range. |
| System.Int32 | lenY | The number of rows in the range. |
Properties
LengthX
Returns the number of columns in the range.
Declaration
public int LengthX { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
LengthY
Returns the number of rows in the range.
Declaration
public int LengthY { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
LocationX
Returns the zero-based column index of the top-left cell of the range.
Declaration
public int LocationX { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
LocationY
Returns the zero-based row index of the top-left cell of the range.
Declaration
public int LocationY { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |