Método TextSelection.NewLine

Insere um caractere de quebra de linha no ponto ativo.

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

Sintaxe

'Declaração
Sub NewLine ( _
    Count As Integer _
)
void NewLine(
    int Count
)
void NewLine(
    [InAttribute] int Count
)
abstract NewLine : 
        Count:int -> unit 
function NewLine(
    Count : int
)

Parâmetros

  • Count
    Tipo: System.Int32
    Opcional.Representa o número de caracteres de nova linha para inserir.

Comentários

Se o valor de Count é negativo, ou maior ou igual a 10.000, em seguida, NewLine falha.

Exemplos

Sub NewLineExample()
   ' 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)
   ' Insert some new lines and some text.
   objSel.NewLine(3)
   objSel.Insert("A new line", vsInsertFlags.vsInsertFlagsInsertAtStart)
End Sub

Segurança do .NET Framework

Consulte também

Referência

TextSelection Interface

Namespace EnvDTE