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