GrapeCity.Xaml.Excel
Item Property (ExcelWorksheet)


GrapeCity.Excel Namespace > ExcelWorksheet Class : Item Property
Get the ExcelCell at the specified by row and column.
Syntax
'Declaration
 
Public ReadOnly Default Property Item( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As IExcelCell
'Usage
 
Dim instance As ExcelWorksheet
Dim row As Integer
Dim column As Integer
Dim value As IExcelCell
 
value = instance.Item(row, column)
public IExcelCell this[ 
   int row,
   int column
]; {get;}

Parameters

row
column

Property Value

A ExcelCell indicates the excel cell which row index is row and column index is column.
Remarks
If the cell indicated by row and column is not existed, create a new one and return it.
See Also

Reference

ExcelWorksheet Class
ExcelWorksheet Members