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
類型:Boolean選擇項。 判斷移動的文字是否折疊。 預設值為 false。
Count
類型:Int32選擇項。 代表要向下移動的頁數。 預設值為 1。
備註
如果 Extend 的值是 true,則文字選取範圍的作用端點會移至下一頁 Count 數目。 否則,選取文字將會被摺疊並且置於 Count PAGE DOWN 從作用端點。 如果還沒有移動到 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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。