共用方式為


TextSelection.PageUp 方法

移動文件中的現用點往上指定的頁數,捲動檢視。

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

語法

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

參數

  • Extend
    類型:Boolean

    選擇項。 判斷移動的文字是否折疊。 預設值為 false。

  • Count
    類型:Int32

    選擇項。 代表要向上移動的頁數。 預設值為 1。

備註

如果 Extend 的值是 true,則文字選取範圍的作用端點會移至網頁 Count 數目。 否則,選取文字將會被摺疊並且置於 Count 上一頁從作用端點。 如果還沒有移動到 Count 指定的頁數就碰到了文件的開頭,則位置就會留在文件的開頭。

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

範例

Sub PageUpExample()
   ' 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 命名空間