NavigationGroups Interface

Definition

Contains a set of NavigationGroup objects that represent the navigation groups displayed by a navigation module in the Navigation Pane.

public interface class NavigationGroups : Microsoft::Office::Interop::Outlook::_NavigationGroups, Microsoft::Office::Interop::Outlook::NavigationGroupsEvents_12_Event
[System.Runtime.InteropServices.Guid("000630EF-0000-0000-C000-000000000046")]
public interface NavigationGroups : Microsoft.Office.Interop.Outlook._NavigationGroups, Microsoft.Office.Interop.Outlook.NavigationGroupsEvents_12_Event
Public Interface NavigationGroups
Implements _NavigationGroups, NavigationGroupsEvents_12_Event
Derived
Attributes
Implements

Remarks

This is a .NET interface derived from a COM coclass that is required by managed code for interoperability with the corresponding COM object. Use this derived interface to access all method, property, and event members of the COM object. However, if a method or event you want to use shares the same name under the same COM object, cast to the corresponding primary interface to call the method, and cast to the latest events interface to connect to the event. Refer to this topic for information about the COM object. For information about the method and property members of the COM object, see _NavigationGroups. For information about the event members of the COM object, see NavigationGroupsEvents_12_Event.

Use the NavigationGroups property of the parent navigation module, such as a MailModule object, to return a NavigationGroups object.

Use the Create(String) method to create a new NavigationGroup object and add it to the collection. Use the Item[Object] property (this in C#) to retrieve a NavigationGroup object from the collection. Use the Delete(NavigationGroup) method of the NavigationGroups collection to create a new NavigationGroup object.

Use the GetDefaultNavigationGroup(OlGroupType) to return the default navigation group for a specified group type.

Properties

Application

Returns an Application object that represents the parent Outlook application for the object. Read-only.

(Inherited from _NavigationGroups)
Class

Returns an OlObjectClass constant indicating the object's class. Read-only.

(Inherited from _NavigationGroups)
Count

Returns an Integer (int in C#) value indicating the count of objects in the specified collection. Read-only.

(Inherited from _NavigationGroups)
Item[Object]

Returns a NavigationGroup object from the collection.

(Inherited from _NavigationGroups)
Parent

Returns the parent Object of the specified object. Read-only.

(Inherited from _NavigationGroups)
Session

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

(Inherited from _NavigationGroups)

Methods

Create(String)

Creates and returns a new NavigationGroup object, added to the end of the NavigationGroups collection.

(Inherited from _NavigationGroups)
Delete(NavigationGroup)

Deletes the specified NavigationGroup object from the NavigationGroups collection.

(Inherited from _NavigationGroups)
GetDefaultNavigationGroup(OlGroupType)

Returns the NavigationGroup that corresponds to the selected default shared folder group.

(Inherited from _NavigationGroups)

Events

NavigationFolderAdd

Occurs after a folder is added to a NavigationGroups collection.

(Inherited from NavigationGroupsEvents_12_Event)
NavigationFolderRemove

Occurs after a navigation folder has been removed from the NavigationGroups collection.

(Inherited from NavigationGroupsEvents_12_Event)
SelectedChange

Occurs after the selection state is changed for a navigation folder contained in a Calendar navigation module.

(Inherited from NavigationGroupsEvents_12_Event)

Applies to