Given (NotesName - JavaScript™)
Read-only. The given component of a hierarchical name (G=
).
Defined in
NotesNameSyntax
getGiven() : string
Usage
This property returns an empty string for a hierarchical name with no given name component.This property returns an empty string for an Internet or flat name.
A name created through Domino® administration does not contain a given name component.
Examples
This computed field returnsJohn
.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.getGiven();