WorkbookEvents_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 worksheet that is part of a Document Workspace is synchronized with the copy on the server.

Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)

Usage

Sub Sub1(SyncEventType As MsoSyncEventType)
End Sub
Dim workbookEvents_SyncEventHandler1 As New WorkbookEvents_SyncEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub WorkbookEvents_SyncEventHandler( _
    <InAttribute()> ByVal SyncEventType As MsoSyncEventType _
)
public delegate void WorkbookEvents_SyncEventHandler(
    [In] MsoSyncEventType SyncEventType
);
public delegate Void WorkbookEvents_SyncEventHandler(
    MsoSyncEventType^ SyncEventType
);
public delegate void WorkbookEvents_SyncEventHandler(
    /*in*/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 worksheet 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.Excel Namespace