API Documentation > CorelDRAW > 2025-v26 > Workspace > IVGWorkspace
Workspace.Default property
Gets the workspace's default state
Syntax:
Property Get Default() As Boolean
Remarks:
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