Adds a new table at the current text input position.

Add()

public bool Add();
Public Function Add() As Boolean

Add(Int, Int)

public bool Add(int rows, int columns);
Public Function Add(ByVal rows As Integer, ByVal columns As Integer) As Boolean

Add(Int, Int, Int)

public bool Add(int rows, int columns, int id);
Public Function Add(ByVal rows As Integer, ByVal columns As Integer, ByVal id As Integer) As Boolean

Parameters

Parameter Description
rows Specifies the number of rows the table consists of.
columns Specifies the number of columns the table consists of.
id Specifies the table's id.

Return Value

The return value is true, if the table could be added. Otherwise it is false.