Pane.VerticalPercentScrolled Property
Returns or sets the vertical scroll position as a percentage of the document length. Read/write Long.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Property VerticalPercentScrolled As Integer
Get
Set
'Usage
Dim instance As Pane
Dim value As Integer
value = instance.VerticalPercentScrolled
instance.VerticalPercentScrolled = value
int VerticalPercentScrolled { get; set; }
Property Value
Type: System.Int32
Examples
This example vertically scrolls the active pane of the window for Document1 to the end.
With Windows("Document1")
.Activate
.ActivePane.VerticalPercentScrolled= 100End With