[]
Adds empty regular cells to fill out the gaps in the table.
public void AddMissingCells(CellStyle cellStyle = null)
| 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)
| 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)
| 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)
| 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)
| 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)
| 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. |