[]
Creates an empty table cell with default style at the specified position.
public TableCell AddCell(int rowIndex, int columnIndex, int rowSpan = 1, int columnSpan = 1)
| Type | Name | Description |
|---|---|---|
| int | rowIndex | Index of top row in the cell. |
| int | columnIndex | Index of left column in the cell. |
| int | rowSpan | The number of rows covered by a cell. |
| int | columnSpan | The number of columns covered by a cell. |
| Type | Description |
|---|---|
| TableCell | A TableCell object. |
Creates an empty table cell with given style at the specified position.
public TableCell AddCell(CellStyle cellStyle, int rowIndex, int columnIndex, int rowSpan = 1, int columnSpan = 1)
| Type | Name | Description |
|---|---|---|
| CellStyle | cellStyle | The style of the cell, or null to use the default style. |
| int | rowIndex | Index of top row in the cell. |
| int | columnIndex | Index of left column in the cell. |
| int | rowSpan | The number of rows covered by a cell. |
| int | columnSpan | The number of columns covered by a cell. |
| Type | Description |
|---|---|
| TableCell | A TableCell object. |
Creates a table cell with default style and a new TextLayout inside.
public TableCell AddCell(int rowIndex, int columnIndex, object data)
| Type | Name | Description |
|---|---|---|
| int | rowIndex | Index of top row in the cell. |
| int | columnIndex | Index of left column in the cell. |
| object | data | A data object or string to be displayed in the cell. |
| Type | Description |
|---|---|
| TableCell | A TableCell object. |
Creates a table cell with given style and a new TextLayout inside.
public TableCell AddCell(CellStyle cellStyle, int rowIndex, int columnIndex, object data)
| Type | Name | Description |
|---|---|---|
| CellStyle | cellStyle | The style of the cell, or null to use the default style. |
| int | rowIndex | Index of top row in the cell. |
| int | columnIndex | Index of left column in the cell. |
| object | data | A data object or string to be displayed in the cell. |
| Type | Description |
|---|---|
| TableCell | A TableCell object. |
Creates a table cell with default style and a new TextLayout inside.
public TableCell AddCell(int rowIndex, int columnIndex, int rowSpan, int columnSpan, object data)
| Type | Name | Description |
|---|---|---|
| int | rowIndex | Index of top row in the cell. |
| int | columnIndex | Index of left column in the cell. |
| int | rowSpan | The number of rows covered by a cell. |
| int | columnSpan | The number of columns covered by a cell. |
| object | data | A data object or string to be displayed in the cell. |
| Type | Description |
|---|---|
| TableCell | A TableCell object. |
Creates a table cell with given style and a new TextLayout inside.
public TableCell AddCell(CellStyle cellStyle, int rowIndex, int columnIndex, int rowSpan, int columnSpan, object data)
| Type | Name | Description |
|---|---|---|
| CellStyle | cellStyle | The style of the cell, or null to use the default style. |
| int | rowIndex | Index of top row in the cell. |
| int | columnIndex | Index of left column in the cell. |
| int | rowSpan | The number of rows covered by a cell. |
| int | columnSpan | The number of columns covered by a cell. |
| object | data | A data object or string to be displayed in the cell. |
| Type | Description |
|---|---|
| TableCell | A TableCell object. |