NumberFormat (NotesViewColumn - LotusScript®)

Read-write. Format for numeric values 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: format% = notesViewColumn .NumberFormat

To set: notesViewColumn . NumberFormat = format%

Legal values

  • VC_FMT_CURRENCY (3) to display as currency.
  • VC_FMT_FIXED (1) to display as fixed point decimal numbers.
  • VC_FMT_GENERAL (0) to display as floating point decimal numbers.
  • VC_FMT_SCIENTIFIC (2) to display using scientific notation.

Usage

To display a number as a percentage, see NumberAttrib.

Example