Partager via


Document.NewWindow, méthode

Crée une nouvelle fenêtre dans laquelle afficher le document.

Espace de noms :  EnvDTE
Assembly :  EnvDTE (dans EnvDTE.dll)

Syntaxe

'Déclaration
Function NewWindow As Window
Window NewWindow()
Window^ NewWindow()
abstract NewWindow : unit -> Window
function NewWindow() : Window

Valeur de retour

Type : EnvDTE.Window
Objet Window.

Notes

La nouvelle fenêtre créée est une fenêtre de document enfant MDI.

Exemples

Sub NewWindowExample()
    ' Before running, create a text file or other document window.
    Dim docs As Documents
    Dim doc As Document
    Dim win As Window
    docs = documents
    docs.SaveAll()
    doc = dte.ActiveDocument
    win = doc.NewWindow()
    doc.Save("c:\temp\docsave.txt")
    msgbox(doc.Selection().text)
    docs.CloseAll(vsSaveChanges.vsSaveChangesPrompt)
End Sub

Sécurité .NET Framework

Voir aussi

Référence

Document Interface

EnvDTE, espace de noms