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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。