_DTE.ItemOperations Property
Visual Studio 2015
Gets the ItemOperations object.
Assembly: EnvDTE (in EnvDTE.dll)
The ItemOperations object includes members that are specific to populating dialog boxes such as the Add Item, Open File, and New File dialogs.
Sub ItemOperationsExample() Dim objTextDoc As TextDocument Dim objEP As EditPoint 'Create a new text document. Call DTE.ItemOperations.NewFile("General\Text File") 'Get a handle to the new document. Set objTextDoc = DTE.ActiveDocument.Object("TextDocument") Set objEP = objTextDoc.StartPoint.CreateEditPoint 'Create an EditPoint and add some text. objEP.Insert "A test sentence." End Sub
Show: