TextSelection.PageDown(Boolean, Int32) Method
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.
Moves the active point a specified number of pages down in the document, scrolling the view.
void PageDown(bool Extend = false, int Count = 1);
[System.Runtime.InteropServices.DispId(60)]
public void PageDown (bool Extend = false, int Count = 1);
[<System.Runtime.InteropServices.DispId(60)>]
abstract member PageDown : bool * int -> unit
Public Sub PageDown (Optional Extend As Boolean = false, Optional Count As Integer = 1)
Parameters
- Extend
- Boolean
Optional. Determines whether the moved text is collapsed or not. The default is false
.
- Count
- Int32
Optional. Represents the number of pages to move down. The default value is 1.
- Attributes
Examples
Sub PageExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Go to first line in document and select it.
objSel.GotoLine(1, True)
objSel.PageDown(True, 2)
objSel.PageUp(True, 2)
End Sub
Remarks
If the value of Extend
is true
, then the active end of the text selection is moved down Count
number of pages. Otherwise, the text selection is collapsed and positioned Count
pages down from the active end. If the end of the document is encountered before Count
pages, then the position is left at the end of the document.
If Count
is negative, then PageDown performs like the PageUp method.