TextSelection.MoveToAbsoluteOffset 方法
按给定的从 1 开始的绝对字符偏移量移动活动点。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
Sub MoveToAbsoluteOffset ( _
Offset As Integer, _
Extend As Boolean _
)
void MoveToAbsoluteOffset(
int Offset,
bool Extend
)
void MoveToAbsoluteOffset(
[InAttribute] int Offset,
[InAttribute] bool Extend
)
abstract MoveToAbsoluteOffset :
Offset:int *
Extend:bool -> unit
function MoveToAbsoluteOffset(
Offset : int,
Extend : boolean
)
参数
- Offset
类型:System.Int32
必选。从文档开头算起的字符索引(从 1 开始)。
- Extend
类型:System.Boolean
可选。默认值为 false。扩展当前选定范围的布尔值。如果 Extend 为 true,则选定内容的活动端会移到该位置,而定位端保留在原地。否则,两端都将移动到指定位置。此参数仅适用于 TextSelection 对象。
示例
Sub MoveToAbsoluteOffsetExample()
' 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)
' Move to various lines and offsets (character columns).
objSel.MoveToAbsoluteOffset(3, True)
objSel.MoveToDisplayColumn(3, True)
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。