API Documentation > CorelDRAW > 2025-v26 > View > IVGView
View.Name property
Gets or sets the name of the view
Syntax:
Property Get Name() As String
Property Let Name(ByVal Value As String)
Remarks:
The Name property returns or specifies the name of a view.
Examples:
The following VBA example sets the name of the first view in the Views collection and displays the new name.
Sub ViewName()
With ActiveDocument.Views(1)
  .Name = "My New View"
  MsgBox .Name
End With 
End Sub