API Documentation > CorelDRAW > 2025-v26 > View > IVGView
View.UsePage property
Gets or sets whether to use page
Syntax:
Property Get UsePage() As Boolean
Property Let UsePage(ByVal Value As Boolean)
Remarks:
The UsePage property returns or specifies whether to revert to a page when switching between views. If the UsePage property is set to True, the page associated with the view appears in the drawing window when the view is activated. If the property is set to False, the view's page does not appear when the view is active.
Examples:
The following VBA example creates five pages and adds a view for each page. The zoom is incremented by 10 for each page, and the UsePage property is set to False.
Sub Test()
Dim Vw As View
Dim VwCollection As Views
Dim intCounter As Integer
Set VwCollection = ActiveDocument.Views
For intCounter = 1 To 5
  ActiveDocument.AddPages (1)
  Set Vw = VwCollection.AddActiveView("TestView" & intCounter)
  Vw.Zoom = CDbl(intCounter * 10)
  Vw.UsePage = False
Next intCounter
Set Vw = Nothing
Set VwCollection = Nothing 
End Sub