[]
public Table Add()
Public Function Add() As Table
| Type | Description |
|---|---|
| Table | The added Table. |
public Table Add(Style style)
Public Function Add(style As Style) As Table
| Type | Name | Description |
|---|---|---|
| Style | style | The table style. |
| Type | Description |
|---|---|
| Table | The added Table. |
public Table Add(int columns, int rows)
Public Function Add(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. |
| Type | Description |
|---|---|
| Table | The added Table. |
public Table Add(int columns, int rows, Style style)
Public Function Add(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. |
| Type | Description |
|---|---|
| Table | The added Table. |
public Table Add(string[][] texts, Style style = null)
Public Function Add(texts As String()(), Optional style As Style = Nothing) 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 the number of cells. |
| Style | style | The table style. |
| Type | Description |
|---|---|
| Table | The added Table. |