HeaderFontStyle (NotesViewColumn - LotusScript®)

Read-write. The font style of the header in a column.

Note: This property is new with Release 6.

Defined in

NotesViewColumn

Data type

Constant of type Integer

Syntax

To get: style% = notesViewColumn .HeaderFontStyle

To set: notesViewColumn . HeaderFontStyle = 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 IsHeaderFontBold, IsHeaderFontItalic, IsHeaderFontStrikethrough, and IsHeaderFontUnderline to query and set the font styles.

Example