EApplication_PresentationSyncEventHandler Delegate

A delegate for an event in the corresponding object. After you implement a callback method for the event, use this delegate to connect the callback method to the event.

Occurs when the local copy of a presentation that is part of a Document Workspace is synchronized with the copy on the server. Provides important status information regarding the success or failure of the synchronization of the presentation.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub EApplication_PresentationSyncEventHandler ( _
    Pres As Presentation, _
    SyncEventType As MsoSyncEventType _
)
'Usage
Dim instance As New EApplication_PresentationSyncEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void EApplication_PresentationSyncEventHandler(
    Presentation Pres,
    MsoSyncEventType SyncEventType
)

Parameters

Remarks

The SyncEventType parameter value can be one of these MsoSyncEventType constants.

msoSyncEventDownloadInitiated

msoSyncEventDownloadSucceeded

msoSyncEventDownloadFailed

msoSyncEventUploadInitiated

msoSyncEventUploadSucceeded

msoSyncEventUploadFailed

msoSyncEventDownloadNoChange

msoSyncEventOffline

See Also

Reference

Microsoft.Office.Interop.PowerPoint Namespace

PresentationSync