Folder.AddToPFFavorites method (Outlook)
Adds a Microsoft Exchange public folder to the public folder's Favorites folder.
Syntax
expression. AddToPFFavorites
expression A variable that represents a Folder object.
Example
The following Visual Basic for Applications (VBA) example adds the public folder GroupDiscussion to the user's Favorites folder by using the AddToPFFavorites method. To run this example, you need to replace 'GroupDiscussion' with a valid public folder name.
Sub AddToFavorites()
'Adds a Public Folder to the list of favorites
Dim objFolder As Outlook.Folder
Set objFolder = Application.Session.GetDefaultFolder _
(olPublicFoldersAllPublicFolders).Folders.Item("GroupDiscussion")
objFolder.AddToPFFavorites
End Sub
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.