FontStyle (NotesViewColumn - LotusScript®)

Read-write. The font style of data in a column.

Note: This property is new with Release 5.
Note: This property is read-write with Release 6.

Defined in

NotesViewColumn

Data type

Constant of type Integer

Syntax

To get:style% = notesViewColumn .FontStyle

To set: notesViewColumn . FontStyle = style%

Legal values

These values can be used in combination.

  • VC_FONT_PLAIN (0)
    Note: This value is new with Release 6.
  • VC_FONT_BOLD (1)
  • VC_FONT_ITALIC (2)
  • VC_FONT_UNDERLINE (4)
  • VC_FONT_STRIKEOUT (8)
  • VC_FONT_STRIKETHROUGH (8)
    Note: This value is new with Release 6.

Usage

You can use IsFontBold, IsFontItalic, IsFontStrikethrough, and IsFontUnderline to query and set the font styles.

Example