Previous Document Next Document

Object Model Reference : Classes : V : View : Properties : View.Name


View.Name

Property Name As String

Description

Member of View

The Name property returns or specifies the name of a view.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.