Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IRange Interface / Item Property / Item(Int32,Int32) Property
An integer value indicates the row index.
An integer value indicates the column index.


In This Topic
    Item(Int32,Int32) Property
    In This Topic
    Gets the IRange with the specified row and column.
    Syntax
    'Declaration
     
    
    Overloads ReadOnly Property Item( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As IRange
    'Usage
     
    
    Dim instance As IRange
    Dim row As Integer
    Dim column As Integer
    Dim value As IRange
     
    value = instance.Item(row, column)
    IRange Item( 
       int row,
       int column
    ) {get;}

    Parameters

    row
    An integer value indicates the row index.
    column
    An integer value indicates the column index.

    Property Value

    An IRange object which provide access to cell values, formulas, formatting...
    Remarks
    For IWorksheet.Columns, arguments indicate the start column and end column.

    For IWorksheet.Rows, arguments indicate the start and end row.

    See Also