Object Model Reference : Classes : V : View : Properties : View.Name |
Property Name As String
Member of View
The Name property returns or specifies the name of a view.
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 |
Copyright 2013 Corel Corporation. All rights reserved.