GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IRange Interface / Item Property / Item(Int32,Int32,Int32,Int32) Property
An integer value indicates the top row index.
An integer value indicates the left column index.
An integer value indicates the bottom row index.
An integer value indicates the right column index.


In This Topic
Item(Int32,Int32,Int32,Int32) Property
In This Topic
Gets the IRange with the specified range.
Syntax
'Declaration
 
Overloads ReadOnly Property Item( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal row2 As Integer, _
   ByVal column2 As Integer _
) As IRange
 
'Usage
 
Dim instance As IRange
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
Dim value As IRange
 
value = instance.Item(row, column, row2, column2)

Parameters

row
An integer value indicates the top row index.
column
An integer value indicates the left column index.
row2
An integer value indicates the bottom row index.
column2
An integer value indicates the right column index.

Property Value

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