Pane.VerticalPercentScrolled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns or sets the vertical scroll position as a percentage of the document length. Read/write Long.
public:
property int VerticalPercentScrolled { int get(); void set(int value); };
public int VerticalPercentScrolled { get; set; }
member this.VerticalPercentScrolled : int with get, set
Public Property VerticalPercentScrolled As Integer
Property Value
Examples
This example vertically scrolls the active pane of the window for Document1 to the end.
<span class="label">With Windows("Document1")
.Activate
.ActivePane.</span>
<span class="label">VerticalPercentScrolled</span>
<span class="label">= 100End With</span>