TextSelection.DeleteLeft, méthode
Supprime un nombre spécifié de caractères à gauche du point actif.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
Sub DeleteLeft ( _
Count As Integer _
)
void DeleteLeft(
int Count
)
void DeleteLeft(
[InAttribute] int Count
)
abstract DeleteLeft :
Count:int -> unit
function DeleteLeft(
Count : int
)
Paramètres
Count
Type : Int32Optionnel. Représente le nombre de caractères à supprimer.
Notes
Si la sélection de texte est vide, DeleteLeft supprime le nombre indiqué de caractères à la gauche du point de terminaison actif. Si la valeur de Count est négative, DeleteLeft agit comme la méthode Delete.
Exemples
Public objSel As TextSelection = DTE.ActiveDocument.Selection
Sub DeleteLeftExample()
' Before running this example, open a text document.
' Perform operations on the text.
objSel.StartOfDocument(False)
Position(vsStartOfLineOptions.vsStartOfLineOptionsFirstColumn, 4)
objSel.Copy()
Position(vsStartOfLineOptions.vsStartOfLineOptionsFirstText, 4)
objSel.Cut()
Position(vsStartOfLineOptions.vsStartOfLineOptionsFirstText, 4)
objSel.Delete()
Position(vsStartOfLineOptions.vsStartOfLineOptionsFirstText, 4)
objSel.DeleteLeft(6)
objSel.DestructiveInsert("NEW TEXT")
End Sub
Sub Position(ByVal pos As vsStartOfLineOptions, ByVal ipos As Integer)
' Moves the insertion point down to the beginning of the next line,
' and then highlights the right-most four characters.
objSel.LineDown()
objSel.StartOfLine(vsStartOfLineOptions.vsStartOfLineOptionsFirstText)
objSel.CharRight(True, 4)
End Sub
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.