Spread Silverlight Documentation
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 System.Integer, _
   ByVal column As System.Integer _
) As IExcelCell
'Usage
 
Dim instance As ExcelWorksheet
Dim row As System.Integer
Dim column As System.Integer
Dim value As IExcelCell
 
value = instance.Item(row, column)
public IExcelCell this[ 
   System.int row,
   System.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