[]
        
(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)
Public Sub AddMissingCells(Optional cellStyle As CellStyle = Nothing)
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)
Public Sub AddMissingCells(rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer)
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)
Public Sub AddMissingCells(cellStyle As CellStyle, rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer)
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)
Public Sub AddMissingCells(cellStyle As CellStyle, data As Object)
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)
Public Sub AddMissingCells(rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer, data As Object)
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)
Public Sub AddMissingCells(cellStyle As CellStyle, rowIndex As Integer, columnIndex As Integer, rowCount As Integer, columnCount As Integer, data As Object)
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.