TimeFmt (NotesViewColumn - LotusScript®)

Read-write. The format of time 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: fmt% = notesViewColumn.TimeFmt

To set: notesViewColumn .TimeFmt = fmt%

Legal values

  • VC_FMT_HMS (1) for hour, minute, second.
  • VC_FMT_HM (0) for hour, minute.
  • VC_FMT_H (2) for hour only
    Note: This value is new with Release 6.
  • VC_FMT_ALL (3) for hour, minute, second and hundredths of a second.
    Note: This value is new with Release 6.

Usage

See DateFmt for the date format. See TimeDateFmt for the time-date format. See TimeZoneFmt for the time zone format.

Example