API Documentation > CorelDRAW > 2025-v26 > Workspace > IVGWorkspace
Workspace.Name property
Gets the workspace's name
Syntax:
Property Get Name() As String
Remarks:
The Name property returns the name given to a workspace.
Examples:
The following VBA example displays a message box with the name of the current workspace.
Sub WorkspaceName()
MsgBox"Current Workspace: " & ActiveWorkspace.Name 
End Sub