Initials (NotesName - JavaScript)

Read-only. The initials component of a hierarchical name (I=).

Defined in

NotesName

Syntax

getInitials() : string

Usage

This property returns an empty string for a hierarchical name with no initials component.

This property returns an empty string for an Internet or flat name.

A name created through Domino® administration does not contain an initials component.

Examples

This computed field returns B.
var nam:NotesName = session.createName(
	"CN=John B Goode/OU=Sales/OU=East/O=Acme/C=US/S=Goode/G=John/I=B/Q=Jr");
return nam.getInitials();