Application.DocumentSync event (Word)

Note

This object or member has been deprecated, but it remains part of the object model for backward compatibility. You should not use it in new applications.

Syntax

Private Sub_DocumentSync(Doc, SyncEventType)

expression A variable that represents an 'Application' object declared using the WithEvents keyword in a class module.

Parameters

Name Required/Optional Data type Description
Doc Required Document The document being synchronized.
SyncEventType Required MsoSyncEventType The status of the document synchronization.

Remarks

For information about using events with the Application object, see Using events with the Application object.

Example

The following example displays a message if the synchronization of a document in a Document Workspace fails.

Private Sub app_DocumentSync(ByVal Doc As Document, _ 
 ByVal SyncEventType As Office.MsoSyncEventType) 
 
 If SyncEventType = msoSyncEventDownloadFailed Or _ 
 SyncEventType = msoSyncEventUploadFailed Then 
 
 MsgBox "Document synchronization failed. " & _ 
 "Please contact your administrator " & vbCrLf & _ 
 "or try again later." 
 
 End If 
 
End Sub

See also

Application 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.