API Documentation > CorelDRAW > 2025-v26 > Application > IVGApplication
Application.ImportWorkspace method
Imports workspace elements into the current workspace
Syntax:
Sub ImportWorkspace(ByVal FileName As String)
Parameters:
Name Type Description
FileName
String
Remarks:
The ImportWorkspace method imports workspace elements into the current workspace.
Examples:
The following VBA example imports the specified workspace and merges it with the current workspace.
Sub Test()
ImportWorkspace "C:\Temp\MyToolbar.cwf" 
End Sub