SyncObjects.AppFolders property (Outlook)

This property returns the SyncObject object for application folders. Read-only.

Syntax

expression. AppFolders

expression A variable that represents a SyncObjects object.

Remarks

The SyncObject is where folders are automatically added when the InAppFolderSyncObject property of the Folder object is set to True. The SyncObject allows users to synchronize Microsoft Outlook folders, address books, and folder home pages for offline use.

Example

The following example sets the SyncObject for the application folders and synchronizes the user's Inbox.

Public Sub SetAppfolders() 
 
 Dim nsp As Outlook.NameSpace 
 
 Dim objSycs As Outlook.SyncObjects 
 
 Dim objSyc As Outlook.SyncObject 
 
 Dim mpfInbox As Outlook.Folder 
 
 
 
 Set nsp = Application.GetNamespace("MAPI") 
 
 Set objSycs = nsp.SyncObjects 
 
 Set objSyc = objSycs.AppFolders 
 
 Set mpfInbox = nsp.GetDefaultFolder(olFolderInbox) 
 
 mpfInbox.InAppFolderSyncObject = True 
 
 objSyc.Start 
 
End Sub

See also

SyncObjects Object

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.