Style (RichTextTable - Java™)
Read-write. The table color style. Use this property in conjunction with Color and AlternateColor.
Defined in
Data type
int
Syntax
public int getStyle()
throws NotesException
public void setStyle(int tablestyle)
throws NotesException
Legal values
- RichTextTable.TABLESTYLE_ALTERNATINGCOLS applies AlternateColor and Color to alternating columns starting with AlternateColor.
- RichTextTable.TABLESTYLE_ALTERNATINGROWS applies AlternateColor and Color to alternating rows starting with AlternateColor.
- RichTextTable.TABLESTYLE_LEFT applies Color to the left column and AlternateColor to all other cells.
- RichTextTable.TABLESTYLE_LEFTTOP applies Color to the left column and first row, and AlternateColor to all other cells.
- RichTextTable.TABLESTYLE_NONE applies no color to the table.
- RichTextTable.TABLESTYLE_RIGHT applies Color to the right column and AlternateColor to all other cells.
- RichTextTable.TABLESTYLE_RIGHTTOP applies Color to the right column and first row, and AlternateColor to all other cells.
- RichTextTable.TABLESTYLE_SOLID applies Color to all cells.
- RichTextTable.TABLESTYLE_TOP applies Color to the first row and AlternateColor to all other cells.
Usage
The default style for new tables is TABLESTYLE_NONE.