Partilhar via


Método TextSelection.GotoLine

Move para o início da linha indicada e seleciona-se a linha foi solicitado.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
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
)

Parâmetros

  • Line
    Tipo: Int32

    Obrigatório. O número da linha para ir a, começando em um.

  • Select
    Tipo: Boolean

    Opcional. Indica se a linha de destino deve ser selecionada. O padrão é false.

Comentários

GotoLine tem o mesmo efeito que TextSelection.MoveToLineAndOffset(Line, 0, False). Se Select é true, então GotoLine também executa EndOfLine(True).

Exemplos

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

Segurança do .NET Framework

Consulte também

Referência

TextSelection Interface

Namespace EnvDTE