LastFTIndexed (NotesDatabase - JavaScript)

Read-only. The date that a database's full-text index was last updated.

Defined in

NotesDatabase

Syntax

getLastFTIndexed() : NotesDateTime

Usage

If the database does not have a full-text index:
  • A local program returns null.
  • A remote (IIOP) program returns an empty string for the following properties: GMTTime, LocalTime, and ZoneTime.
  • In either case, isFTIndexed is false.

The database must be open to use this property.

Examples

This computed field displays the date that the current database was last indexed.
var title = database.getTitle();
if (database.isFTIndexed()) {
	var dt:NotesDateTime = database.getLastFTIndexed();
	return "Database \"" + title + "\" last full-text indexed on " + dt.getDateOnly();
} else {
	return "Database \"" + title + "\" is not full-text indexed"
}