JAVA/CORBA CLASSES


appendTable method
Example

Inserts a table in a rich text item. The table text takes the current style of the item.

Note This method is new with Release 6.5.

Defined in

RichTextItem

Syntax

public void appendTable(int rows, int columns)
   throws NotesException

public void appendTable(int rows, int columns, java.util.Vector labels)
   throws NotesException

public void appendTable(int rows, int columns, java.util.Vector labels, int leftmargin, java.util.Vector rtpstyles)
   throws NotesException

Parameters

A default is taken if the signature does not include the parameter or the parameter is specified as null.

int rows


int columns
java.util.Vector labels
int leftmargin java.util.Vector rtpstyles
Usage

By default the insertion occurs at the end of the item. You can change the insertion point with beginInsert and endInsert.

The RichTextTable class represents a table.

Language cross-reference

AppendTable method in LotusScript NotesRichTextItem class

EditInsertTable @command in formula language

Example
See Also