Metodo TextSelection.DestructiveInsert
Inserisce del testo sovrascrivendo il testo esistente.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
Sub DestructiveInsert ( _
Text As String _
)
void DestructiveInsert(
string Text
)
void DestructiveInsert(
[InAttribute] String^ Text
)
abstract DestructiveInsert :
Text:string -> unit
function DestructiveInsert(
Text : String
)
Parametri
- Text
Tipo: System.String
Obbligatoria.Rappresenta il testo da inserire.
Note
I caratteri di nuova riga fanno sì che l'estremità attiva della selezione di testo venga spostata all'inizio della riga successiva. A seconda della lingua utilizzata nel documento di testo, è possibile che venga inserito un rientro.
Esempi
Public objSel As TextSelection = DTE.ActiveDocument.Selection
Sub DestructiveInsertExample()
' 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.