API Documentation
>
CorelDRAW
>
2025-v26
>
Application
>
IVGApplication
Application.ActiveWorkspace property
Gets the reference to the currently active workspace
Syntax:
Property
Get
ActiveWorkspace
(
)
As
Workspace
Remarks:
The
ActiveWorkspace
property returns a read-only reference to the active workspace.
Examples:
The following VBA example displays the name of the active workspace in a message box.
Sub WorkspaceActive() MsgBox ActiveWorkspace.Name End Sub