[]
        
(Showing Draft Content)

GrapeCity.Spreadsheet.IRange.Item

this Property

this[string]

Gets the IRange with the specified reference.

Declaration
IRange this[string reference] { get; }
ReadOnly Default Property Item(reference As String) As IRange
Parameters
Type Name Description
string reference

A string value represents the reference of the specified cell range.

Property Value
Type Description
IRange

An IRange object which provide access to cell values, formulas, formatting...

this[int]

Gets the IRange at the specified cell position.

Declaration
IRange this[int index] { get; }
ReadOnly Default Property Item(index As Integer) As IRange
Parameters
Type Name Description
int index

The indexed position of cell.

Property Value
Type Description
IRange

An IRange object which provide access to cell values, formulas, formatting...

this[int, int]

Gets the IRange with the specified row and column.

Declaration
IRange this[int row, int column] { get; }
ReadOnly Default Property Item(row As Integer, column As Integer) As IRange
Parameters
Type Name Description
int row

An integer value indicates the row index.

int column

An integer value indicates the column index.

Property Value
Type Description
IRange

An IRange object which provide access to cell values, formulas, formatting...

Remarks

For Columns, arguments indicate the start column and end column.

For Rows, arguments indicate the start and end row.

this[int, int, int, int]

Gets the IRange with the specified range.

Declaration
IRange this[int row, int column, int row2, int column2] { get; }
ReadOnly Default Property Item(row As Integer, column As Integer, row2 As Integer, column2 As Integer) As IRange
Parameters
Type Name Description
int row

An integer value indicates the top row index.

int column

An integer value indicates the left column index.

int row2

An integer value indicates the bottom row index.

int column2

An integer value indicates the right column index.

Property Value
Type Description
IRange

An IRange object which provide access to cell values, formulas, formatting...

this[Reference]

Gets the IRange with the specified range.

Declaration
IRange this[Reference range] { get; }
ReadOnly Default Property Item(range As Reference) As IRange
Parameters
Type Name Description
Reference range

The selected range.

Property Value
Type Description
IRange

An IRange object which provide access to cell values, formulas, formatting...