共用方式為


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 安全性

請參閱

參考

TextSelection 介面

EnvDTE 命名空間