TextSelection.Insert, méthode
Insère la chaîne donnée à l'emplacement actuel du point d'insertion.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
Sub Insert ( _
Text As String, _
vsInsertFlagsCollapseToEndValue As Integer _
)
void Insert(
string Text,
int vsInsertFlagsCollapseToEndValue
)
void Insert(
[InAttribute] String^ Text,
[InAttribute] int vsInsertFlagsCollapseToEndValue
)
abstract Insert :
Text:string *
vsInsertFlagsCollapseToEndValue:int -> unit
function Insert(
Text : String,
vsInsertFlagsCollapseToEndValue : int
)
Paramètres
Text
Type : StringTexte à insérer.
vsInsertFlagsCollapseToEndValue
Type : Int32Une des valeurs vsInsertFlags indiquant comment insérer le texte.
Exemples
[Visual Basic]
Sub InsertExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Go to the first line in document and select it.
objSel.GotoLine(1, True)
' Insert some new lines and some text.
objSel.NewLine(3)
objSel.Insert("A new line", vsInsertFlags.vsInsertFlagsInsertAtStart)
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.