[]
Adds a Table to the end of the current control content.
public Table AddTable()
Public Function AddTable() As Table
Adds a Table to the end of the current control content.
public Table AddTable(Style style)
Public Function AddTable(style As Style) As Table
Type | Name | Description |
---|---|---|
Style | style | The table style. |
Adds a Table to the end of the current control content.
public Table AddTable(int columns, int rows)
Public Function AddTable(columns As Integer, rows As Integer) As Table
Type | Name | Description |
---|---|---|
int | columns | The number of columns in the new table. |
int | rows | The number of rows in the new table. |
Adds a Table to the end of the current control content.
public Table AddTable(int columns, int rows, Style style)
Public Function AddTable(columns As Integer, rows As Integer, style As Style) As Table
Type | Name | Description |
---|---|---|
int | columns | The number of columns in the new table. |
int | rows | The number of rows in the new table. |
Style | style | The table style. |
Adds a Table to the end of the current control content.
public Table AddTable(string[][] texts)
Public Function AddTable(texts As String()()) As Table
Type | Name | Description |
---|---|---|
string[][] | texts | A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second dimension determines the number of cells. |
Adds a Table to the end of the current control content.
public Table AddTable(string[][] texts, Style style)
Public Function AddTable(texts As String()(), style As Style) As Table
Type | Name | Description |
---|---|---|
string[][] | texts | A two dimensional array of texts to put in the cells. The first dimension determines the number of rows, the second dimension determines the number of cells. |
Style | style | The table style. |