Metodo TextSelection.DeleteLeft
Elimina un numero specificato di caratteri alla sinistra del punto attivo.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
Sub DeleteLeft ( _
Count As Integer _
)
void DeleteLeft(
int Count
)
void DeleteLeft(
[InAttribute] int Count
)
abstract DeleteLeft :
Count:int -> unit
function DeleteLeft(
Count : int
)
Parametri
- Count
Tipo: System.Int32
Facoltativo.Rappresenta il numero di caratteri da eliminare.
Note
Se la selezione di testo non contiene caratteri, DeleteLeft eliminerà il numero indicato di caratteri a sinistra del punto finale attivo. Se il valore di Count è negativo, DeleteLeft si comporterà come il metodo Delete.
Esempi
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
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.