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
型別:System.Boolean
選擇項。判斷移動的文字是否折疊。預設值為 false。
- Count
型別:System.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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。