IsMultiDbSearch (NotesDatabase - JavaScript)

Read-only. Indicates whether a database is of type "Multi DB Search."

Defined in

NotesDatabase

Syntax

isMultiDbSearch() : boolean
Legal value Description
true if the database is of type Multi DB Search
false if the database is not of type Multi DB Search

Usage

The database must be open to use this property.

Examples

This computed field displays whether a database is of type Multi DB Search.
if (database.isMultiDbSearch()) {
	return "Multi-database search"
} else {
	return "Not multi-database search"
}