addRow (RichTextTable - Java)

Adds rows to a table.

Defined in

RichTextTable

Syntax

public void addRow()
    throws NotesException
public void addRow(int count)
    throws NotesException
public void addRow(int count, int targetrow)
    throws NotesException

Parameters

int count

Number of rows to add. Defaults to 1.

int targetrow

Row after which to add the new rows, where 1 is the first row and 0 means before the first row. Defaults to last row.

Example