EditPoint::Insert Method (String^)
Visual Studio 2015
Inserts the given string at the edit point's current position in the buffer.
Assembly: EnvDTE (in EnvDTE.dll)
Parameters
- Text
-
Type:
System::String^
Required. The text to insert into the text buffer. Must be a Unicode string.
The edit point moves past the insertion point.
Sub InsertExample() ' Before running this example, open a text document. Dim objTD As TextDocument Dim objEP As EditPoint objTD = DTE.ActiveDocument.Object("TextDocument") objEP = objTD.StartPoint.CreateEditPoint objEP.Insert("Test") End Sub
Show: