[]
Adds empty regular cells to fill out the gaps in the table.
public void AddMissingCells(CellStyle cellStyle = null)
Public Sub AddMissingCells(Optional cellStyle As CellStyle = Nothing)
Type | Name | Description |
---|---|---|
CellStyle | cellStyle | The style of the new cells, or null to apply the default cell style. |
Adds empty regular cells to fill out the gaps in the specified rectangular range of table cells.
public void AddMissingCells(int rowIndex, int columnIndex, int rowCount, int columnCount)
Public Sub AddMissingCells(rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
int | rowIndex | Index of top row in the cell range. |
int | columnIndex | Index of left column in the cell range. |
int | rowCount | Number of rows in the cell range. |
int | columnCount | Number of columns in the cell range. |
Adds empty regular cells to fill out the gaps in the specified rectangular range of table cells.
public void AddMissingCells(CellStyle cellStyle, int rowIndex, int columnIndex, int rowCount, int columnCount)
Public Sub AddMissingCells(cellStyle As CellStyle, rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
CellStyle | cellStyle | The style of the new cells, or null to apply the default cell style. |
int | rowIndex | Index of top row in the cell range. |
int | columnIndex | Index of left column in the cell range. |
int | rowCount | Number of rows in the cell range. |
int | columnCount | Number of columns in the cell range. |
Adds the regular cells to fill out the gaps in the table.
public void AddMissingCells(CellStyle cellStyle, object data)
Public Sub AddMissingCells(cellStyle As CellStyle, data As Object)
Type | Name | Description |
---|---|---|
CellStyle | cellStyle | The style of the new cells, or null to apply the default cell style. |
object | data | A data object or string to be displayed in the cells. |
Adds the regular cells to fill out the gaps in the specified rectangular range of table cells.
public void AddMissingCells(int rowIndex, int columnIndex, int rowCount, int columnCount, object data)
Public Sub AddMissingCells(rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer, data As Object)
Type | Name | Description |
---|---|---|
int | rowIndex | Index of top row in the cell range. |
int | columnIndex | Index of left column in the cell range. |
int | rowCount | Number of rows in the cell range. |
int | columnCount | Number of columns in the cell range. |
object | data | A data object or string to be displayed in the cells. |
Adds the regular cells to fill out the gaps in the specified rectangular range of table cells.
public void AddMissingCells(CellStyle cellStyle, int rowIndex, int columnIndex, int rowCount, int columnCount, object data)
Public Sub AddMissingCells(cellStyle As CellStyle, rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer, data As Object)
Type | Name | Description |
---|---|---|
CellStyle | cellStyle | The style of the new cells, or null to apply the default cell style. |
int | rowIndex | Index of top row in the cell range. |
int | columnIndex | Index of left column in the cell range. |
int | rowCount | Number of rows in the cell range. |
int | columnCount | Number of columns in the cell range. |
object | data | A data object or string to be displayed in the cells. |