'Declaration Function SetCell( _ ByVal sheet As System.Short, _ ByVal row As System.Integer, _ ByVal column As System.Integer, _ ByVal value As System.Object, _ ByVal type As CellType, _ ByVal formatIndex As System.Integer, _ ByVal cellFormula As IExcelFormula _ ) As System.Boolean
'Usage Dim instance As IExcelReader Dim sheet As System.Short Dim row As System.Integer Dim column As System.Integer Dim value As System.Object Dim type As CellType Dim formatIndex As System.Integer Dim cellFormula As IExcelFormula Dim value As System.Boolean value = instance.SetCell(sheet, row, column, value, type, formatIndex, cellFormula)
System.bool SetCell( System.short sheet, System.int row, System.int column, System.object value, CellType type, System.int formatIndex, IExcelFormula cellFormula )
Parameters
- sheet
- The zero based sheet index used to locate the ExcelWorksheet instance
- row
- The zero based cell row index
- column
- The zero based cell column index
- value
- The value for the cell
- type
- The cell type for the cell
- formatIndex
- The format index for the cell
- cellFormula
- The formula for the cell
Return Value
true If the cell is a valid cell. otherwise, false