TextSelection.Delete, méthode
Supprime le texte sélectionné.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
Sub Delete ( _
Count As Integer _
)
void Delete(
int Count
)
void Delete(
[InAttribute] int Count
)
abstract Delete :
Count:int -> unit
function Delete(
Count : int
)
Paramètres
- Count
Type : System.Int32
Facultatif.Représente le nombre de caractères à supprimer.
Notes
Delete supprime le texte sélectionné sans l'avoir copié auparavant dans le Presse-papiers. Si aucun texte n'est sélectionné, Deletesupprime Count caractères à la droite de l'extrémité active. Si la valeur de Count est négative, Delete agit comme DeleteLeft.
Exemples
Public objSel As TextSelection = DTE.ActiveDocument.Selection
Sub DeleteExample()
' 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,
' 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, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.