Item(Int32,Int32) Property
In This Topic
Gets a
Row object for the specified range of rows.
Syntax
'Declaration
Public Overloads ReadOnly Property Item( _
ByVal As Integer, _
ByVal As Integer _
) As Row
'Usage
Dim instance As Rows
Dim row As Integer
Dim row2 As Integer
Dim value As Row
value = instance.Item(row, row2)
public Row Item(
int ,
int
) {get;}
Parameters
- row
- Beginning of range of rows specified
- row2
- End of range of rows specified
Property Value
Row object
Exceptions
Example
This example changes the background color of the all the rows.
See Also