WorkbookBase.Sync Property

Definition

Gets a Microsoft.Office.Core.Sync object that provides access to the methods and properties of documents that are part of a Document Workspace.

public:
 property Microsoft::Office::Core::Sync ^ Sync { Microsoft::Office::Core::Sync ^ get(); };
public Microsoft.Office.Core.Sync Sync { get; }
member this.Sync : Microsoft.Office.Core.Sync
Public ReadOnly Property Sync As Sync

Property Value

A Microsoft.Office.Core.Sync object that provides access to the methods and properties of documents that are part of a Document Workspace.

Examples

The following code example uses the SharedWorkspace property to determine whether the current workbook is part of a Document Workspace. If the workbook is part of a Document Workspace, then the example uses the Sync property to display the user who last changed the document.

This example is for a document-level customization.

private void DisplayLastChangeBy()
{
    if (this.SharedWorkspace.Connected)
    {
        MessageBox.Show("Last changed by: " +
            this.Sync.WorkspaceLastChangedBy);
    }
    else
    {
        MessageBox.Show("The current document is not connected " +
            "to a shared workspace.");
    }
}
Private Sub DisplayLastChangeBy()
    If Me.SharedWorkspace.Connected Then
        MsgBox("Last changed by: " & _
            Me.Sync.WorkspaceLastChangedBy)
    Else
        MsgBox("The current document is not connected " & _
            "to a shared workspace.")
    End If
End Sub

Applies to