IsInMultiDbIndexing (NotesDatabase - JavaScript)

Read-write. Indicates whether a database can be included in multi-database indexing.

Defined in

NotesDatabase

Syntax

isInMultiDbIndexing() : boolean

setInMultiDbIndexing(indexing:boolean) : void

Legal value Description
true if the database allows inclusion in multi-database indexing
false if the database does not allow inclusion in multi-database indexing

Usage

This property corresponds to Include in multi-database indexing in the database design properties of the UI.

The database must be open to use this property.

Examples

This button toggles the setting for including the current database in multi-database indexing.
database.setInMultiDbIndexing(!database.isInMultiDbIndexing());
requestScope.status = "Multi-database indexing = " + database.isInMultiDbIndexing();