Udostępnij za pośrednictwem


Metoda EditPoint2.CharRight —

Przenosi, Edycja punktu określoną liczbę znaków z prawej.

Przestrzeń nazw:  EnvDTE80
Zestaw:  EnvDTE80 (w EnvDTE80.dll)

Składnia

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

Parametry

  • Count
    Typ: Int32

    Opcjonalne.Liczba znaków, aby przenieść w prawo.Wartością domyślną jest jeden znak.

Uwagi

CharRightPrzenosi punkt edycji na prawo wskazana liczba znaków.Po osiągnięciu końca dokumentu przed Count znaków, punkt pozostaje na końcu dokumentu.Jeśli edytowany punkt znajduje się na końcu wiersza, następnie CharRight pozostawia ją na początku następnego wiersza.Oznacza to, że wszystkie sekwencje nowego wiersza są traktowane jako pojedynczy znak.

Jeśli wartość Count jest liczbą ujemną, a następnie CharRight metoda wykonuje identycznie do CharLeft metody.

Przykłady

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

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

EditPoint2 Interfejs

Przestrzeń nazw EnvDTE80