TextSelection.GotoLine 方法
移到指定行的开头,并选定该行(如果需要)。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
Sub GotoLine ( _
Line As Integer, _
Select As Boolean _
)
void GotoLine(
int Line,
bool Select
)
void GotoLine(
[InAttribute] int Line,
[InAttribute] bool Select
)
abstract GotoLine :
Line:int *
Select:bool -> unit
function GotoLine(
Line : int,
Select : boolean
)
参数
- Line
类型:System.Int32
必选。要移至的行号,从 1 开始。
- Select
类型:System.Boolean
可选。指示是否应选定目标行。默认值为 false。
备注
GotoLine 的作用与 TextSelection.MoveToLineAndOffset(Line, 0, False) 一样。 如果 Select 为 true,则 GotoLine 也执行 EndOfLine(True)。
示例
Sub GotoLineExample()
' 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)
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。