DocumentEvents2_SyncEventHandler Delegate 

A Delegate type used to add an event handler for the Sync event. The Sync event occurs when the local copy of a document that is part of a Document Workspace is synchronized with the copy on the server.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Sub Sub1(SyncEventType As MsoSyncEventType)
End Sub
Dim documentEvents2_SyncEventHandler1 As New DocumentEvents2_SyncEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub DocumentEvents2_SyncEventHandler( _
    ByVal SyncEventType As MsoSyncEventType _
)
public delegate void DocumentEvents2_SyncEventHandler(
    MsoSyncEventType SyncEventType
);
public delegate Void DocumentEvents2_SyncEventHandler(
    MsoSyncEventType^ SyncEventType
);
public delegate void DocumentEvents2_SyncEventHandler(
    MsoSyncEventType SyncEventType
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • SyncEventType
    Microsoft.Office.Core.MsoSyncEventType. The status of the document synchronization.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Word Namespace