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: Int32Obrigatório. O número da linha para ir a, começando em um.
Select
Tipo: BooleanOpcional. 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
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.