Sdílet prostřednictvím


TextSelection.GotoLine – metoda

Přesune na začátek řádku uvedeno a vybere řádek, pokud požaduje.

Obor názvů:  EnvDTE
Sestavení:  EnvDTE (v EnvDTE.dll)

Syntaxe

'Deklarace
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
)

Parametry

  • Line
    Typ: Int32

    Požadováno.Číslo řádku odejít od jedné.

  • Select
    Typ: Boolean

    Volitelné.Označuje, zda by měly být vybrány cílové čáry.Výchozí hodnota je false.

Poznámky

GotoLinemá stejný účinek jako TextSelection.MoveToLineAndOffset(Line, 0, False).If Select is true, then GotoLine also performs EndOfLine(True).

Příklady

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

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

TextSelection Rozhraní

EnvDTE – obor názvů