Compartilhar via


Método EditPoint2.CharRight

Move o ponto da edição do número especificado de caracteres à direita.

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

Sintaxe

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

Parâmetros

  • Count
    Tipo: Int32

    Opcional. O número de caracteres a ser movido para a direita. A opção é um caractere.

Comentários

CharRight move o ponto de edição à direita o número indicado de caracteres. Se a extremidade do documento é atingido antes de caracteres de Count , o ponto permanece no final do documento. Se o ponto de edição está no final de uma linha, em CharRight deixa no início da linha seguinte. Ou seja, todas as sequências de linha são tratadas como um caractere único.

Se o valor de Count for negativo, o método de CharRight executa idêntica ao método de CharLeft .

Exemplos

Sub CharRightExample()
   Dim objTextDoc As TextDocument
   Dim objEditPt As EditPoint, iCtr As Integer
        
   ' Create a new text file.
   DTE.ItemOperations.NewFile("General\Text File")
        
   ' Get a handle to the new document and create an EditPoint.
   objTextDoc = DTE.ActiveDocument.Object("TextDocument")
   objEditPt = objTextDoc.StartPoint.CreateEditPoint
        
   ' Insert ten lines of text.
   For iCtr = 1 To 10
      objeditpt.Insert("This is a test." & Chr(13))
   Next iCtr
        
   ' Change the first letter of the fourth word of the fourth line.
   objEditPt.StartOfDocument()
   objEditPt.LineDown(3)
   objEditPt.WordRight(3)
   objEditPt.CharRight(2)
   objEditPt.Charleft(2)
   objeditpt.Delete(1)
   objEditPt.Insert("p")
End Sub

Segurança do .NET Framework

Consulte também

Referência

EditPoint2 Interface

Namespace EnvDTE80