Class NotesModule (Outlook VBA)

The class NotesModule represents the Notes navigation module in the navigation pane of an explorer. To use a NotesModule class variable it first needs to be instantiated, for example

Class

Returns an OlObjectClass constant indicating the object's class. Here you can find possible values for OlObjectClass.

This property returns olNotesModule for the NotesModule object.


Dim nme As NotesModule: Set nme = 
Dim oocsClass As OlObjectClass
oocsClass = nme.Class

Name

Returns a String value that represents the localized display name for the NotesModule object.


Dim nme As NotesModule: Set nme = 
Dim strName As String
strName = nme.Name

Returns a NavigationGroups object that contains the set of navigation groups associated with the NotesModule object.


Dim nme As NotesModule: Set nme = 
Dim ngsNavigationGroups As NavigationGroups
Set ngsNavigationGroups = nme.NavigationGroups

Returns an olNavigationModuleType constant that represents the navigation module type for the object. Here you can find possible values for OlNavigationModuleType.

This property returns olModuleNotes for the NotesModule object.


Dim nme As NotesModule: Set nme = 
Dim onmNavigationModuleType As OlNavigationModuleType
onmNavigationModuleType = nme.NavigationModuleType

Position

Returns or sets a Long value that represents the ordinal position of the NotesModule object when it is displayed in the navigation pane.

This property can only be set to a value between 1 and 9. An error occurs if you attempt to set this property to a value outside that range. Changing the value of this property for a given NotesModule object changes the Position values of other navigation modules in a NavigationModules collection, depending on the relative change between the new value and the original value.


Dim nme As NotesModule: Set nme = 
nme.Position =

Session

Returns the NameSpace object for the current session.

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:

Visible

Returns or sets a Boolean value that determines whether the NotesModule object is displayed in the navigation pane.


Dim nme As NotesModule: Set nme = 
nme.Visible = True