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