共用方式為


TextSelection.PageDown 方法

將作用點在文件中向下移動指定的頁數,捲動檢視。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
Sub PageDown ( _
    Extend As Boolean, _
    Count As Integer _
)
void PageDown(
    bool Extend,
    int Count
)
void PageDown(
    [InAttribute] bool Extend, 
    [InAttribute] int Count
)
abstract PageDown : 
        Extend:bool * 
        Count:int -> unit 
function PageDown(
    Extend : boolean, 
    Count : int
)

參數

  • Extend
    型別:System.Boolean
    選擇項。判斷移動的文字是否折疊。預設值為 false。
  • Count
    型別:System.Int32
    選擇項。代表要向下移動的頁數。預設值為 1。

備註

如果 Extend 的值是 true,則選取文字的作用端點向下移動 Count 頁。 否則,將會摺疊選取文字並且置於作用端點向下 Count 頁。 如果還沒有移動到 Count 指定的頁數就碰到了文件的結尾,則位置就會留在文件的結尾。

如果 Count 為負數,則 PageDown 的執行方式會與 PageUp 相同。

範例

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

.NET Framework 安全性

請參閱

參考

TextSelection 介面

EnvDTE 命名空間