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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。