Style (NotesRichTextTable - LotusScript®)
Read-write. The table color style. Use this property in conjunction with Color and AlternateColor.
Defined in
Data type
Constant of type Integer
Syntax
To get: tableStyle% = notesRichTextTable .Style
To set: notesRichTextTable .Style = tableStyle%
Legal values
- TABLESTYLE_ALTERNATINGCOLS (4) applies AlternateColor and Color to alternating columns starting with AlternateColor.
- TABLESTYLE_ALTERNATINGROWS (5) applies AlternateColor and Color to alternating rows starting with AlternateColor.
- TABLESTYLE_LEFT (3) applies Color to the left column and AlternateColor to all other cells.
- TABLESTYLE_LEFTTOP (1) applies Color to the left column and first row, and AlternateColor to all other cells.
- TABLESTYLE_NONE (0) applies no color to the table.
- TABLESTYLE_RIGHT (7) applies Color to the right column and AlternateColor to all other cells.
- TABLESTYLE_RIGHTTOP (6) applies Color to the right column and first row, and AlternateColor to all other cells.
- TABLESTYLE_SOLID (8) applies Color to all cells
- TABLESTYLE_TOP (2) applies Color to the first row and AlternateColor to all other cells.
Usage
The default style for new tables is TABLESTYLE_NONE.