[]
        
(Showing Draft Content)

GrapeCity.Documents.Drawing.TableRenderer.AddMissingCells

AddMissingCells Method

AddMissingCells(CellStyle)

Adds empty regular cells to fill out the gaps in the table.

Declaration
public void AddMissingCells(CellStyle cellStyle = null)
Parameters
Type Name Description
CellStyle cellStyle

The style of the new cells, or null to apply the default cell style.

AddMissingCells(int, int, int, int)

Adds empty regular cells to fill out the gaps in the specified rectangular range of table cells.

Declaration
public void AddMissingCells(int rowIndex, int columnIndex, int rowCount, int columnCount)
Parameters
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.

AddMissingCells(CellStyle, int, int, int, int)

Adds empty regular cells to fill out the gaps in the specified rectangular range of table cells.

Declaration
public void AddMissingCells(CellStyle cellStyle, int rowIndex, int columnIndex, int rowCount, int columnCount)
Parameters
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.

AddMissingCells(CellStyle, object)

Adds the regular cells to fill out the gaps in the table.

Declaration
public void AddMissingCells(CellStyle cellStyle, object data)
Parameters
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.

AddMissingCells(int, int, int, int, object)

Adds the regular cells to fill out the gaps in the specified rectangular range of table cells.

Declaration
public void AddMissingCells(int rowIndex, int columnIndex, int rowCount, int columnCount, object data)
Parameters
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.

AddMissingCells(CellStyle, int, int, int, int, object)

Adds the regular cells to fill out the gaps in the specified rectangular range of table cells.

Declaration
public void AddMissingCells(CellStyle cellStyle, int rowIndex, int columnIndex, int rowCount, int columnCount, object data)
Parameters
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.