Class TasksModule (Outlook VBA)
The class TasksModule represents the Tasks navigation module in the navigation pane of an explorer. To use a TasksModule 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
This property returns olTasksModule for the TasksModule object.
Dim tme As TasksModule: Set tme =
Dim oocsClass As OlObjectClass
oocsClass = tme.Class
Name
Returns a String value that represents the localized display name for the TasksModule object.
Dim tme As TasksModule: Set tme =
Dim strName As String
strName = tme.Name
NavigationGroups
Returns a NavigationGroups object that contains the set of navigation groups associated with the TasksModule object.
Dim tme As TasksModule: Set tme =
Dim ngsNavigationGroups As NavigationGroups
Set ngsNavigationGroups = tme.NavigationGroups
NavigationModuleType
Returns an OlNavigationModuleType constant that represents the navigation module type for the object. Here you can find possible values for
This property returns olModuleTasks for the TasksModule object.
Dim tme As TasksModule: Set tme =
Dim onmNavigationModuleType As OlNavigationModuleType
onmNavigationModuleType = tme.NavigationModuleType
Position
Returns or sets a Long value that represents the ordinal position of the TasksModule 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 TasksModule 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 tme As TasksModule: Set tme =
tme.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 TasksModule object is displayed in the navigation pane.
Dim tme As TasksModule: Set tme =
tme.Visible = True