The Default property returns whether the current workspace is the default workspace. If the default property is True, the current workspace is the default workspace.
Examples:
The following VBA example displays a list of all workspaces and determines which one is the default workspace.
Sub Test()
Dim Ws As Workspace
For Each Ws In Workspaces
s = s & Ws.Name & " - Default: " & Ws.Default & vbCr
Next Ws
MsgBox "Workspaces: " & vbCr & s
End Sub