API Documentation > CorelDRAW > 2025-v26 > Page > IVGPage
Page.Activate method
Activates an instance of a page
Syntax:
Sub Activate()
Remarks:
The Activate method makes a specified page active.
Examples:
The following VBA example activates the first page and displays it on the screen.
Sub Test()
ActiveDocument.Pages(1).Activate 
End Sub