JournalModule.Session Property

Outlook Developer Reference

Returns the NameSpace object for the current session. Read-only.

Version Information
 Version Added:  Outlook 2007

Syntax

expression.Session

expression   A variable that represents a JournalModule object.

Remarks

The Session property and the GetNamespace method can be used interchangeably to obtain the NameSpace object for the current session. Both members serve the same purpose. For example, the following statements perform the same function:

Visual Basic for Applications
  Set objNamespace = Application.GetNamespace("MAPI") 
Visual Basic for Applications
  Set objSession = Application.Session

See Also