API Documentation > CorelDRAW > 2025-v26 > Page > IVGPage
Page.Name property
Gets or sets the page's name
Syntax:
Property Get Name() As String
Property Let Name(ByVal Value As String)
Remarks:
The Name property returns or specifies the name of a page.
Examples:
The following VBA example displays the name of the active page.
Sub Test()
MsgBox "Current Page: " & ActivePage.Name 
End Sub