Platform (NotesSession - JavaScript)

Read-only. The name of the platform the session is running on.

Defined in

NotesSession

Syntax

getPlatform() : string

Legal value

Value Platform
"AIX/64" AIX® 64-bit
"Linux/64" Linux 64-bit
"Macintosh" Macintosh
"OS/400®" OS/400®
"UNIX" UNIX (Sun, Linux, AIX®)
"Windows/32" Windows 32-bit
"Windows/64" Windows 64-bit

Usage

For a Web client, this is the platform of the server.

Examples

This computed field displays the Notes® version and platform for the current session.
return "Running Notes " + session.getNotesVersion() +
" on " + session.getPlatform() + "."