Partager via


EditPoint2.CharLeft, méthode (Int32)

Déplace le point d'édition du nombre spécifié de caractères vers la gauche.

Espace de noms :  EnvDTE80
Assembly :  EnvDTE80 (dans EnvDTE80.dll)

Syntaxe

'Déclaration
Sub CharLeft ( _
    Count As Integer _
)
void CharLeft(
    int Count
)
void CharLeft(
    [InAttribute] int Count
)
abstract CharLeft : 
        Count:int -> unit 
function CharLeft(
    Count : int
)

Paramètres

  • Count
    Type : System.Int32
    Facultatif.Nombre de caractères spécifiant l'importance du déplacement vers la gauche.La valeur par défaut est 1 caractère.

Implémentations

EditPoint.CharLeft(Int32)

Notes

CharLeft déplace le point d'édition du nombre spécifié de caractères vers la gauche. Si le début du document est atteint avant le nombre de caractères indiqué, le curseur reste au début du document. Si le point d'édition se trouve au début d'une ligne, CharLeft le laisse à la fin de la ligne précédente. Autrement dit, toutes les séquences de sauts de ligne sont traitées comme un caractère unique.

Si la valeur de Count est négative, CharLeft agit comme la méthode CharRight.

Exemples

Sub CharLeftExample()
   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

Sécurité .NET Framework

Voir aussi

Référence

EditPoint2 Interface

CharLeft, surcharge

EnvDTE80, espace de noms