| Name | Type | Description |
|---|---|---|
| Name |
String
|
|
| OriginX |
Double
|
|
| OriginY |
Double
|
|
| Zoom |
Long
|
Specifies the user-defined magnification level for a customized view. |
| Page | Creates the view for a specified page in the document. |
Sub Test()
Dim v As View
Dim x As Double, y As Double
x = ActivePage.SizeWidth / 2
y = ActivePage.SizeHeight / 2
Set v = ActiveDocument.CreateView("My New View", x, y, 200)
v.Activate
End Sub