Documents.CloseAll Method

Closes all open documents in the environment and optionally saves them.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
Sub CloseAll ( _
    Save As vsSaveChanges _
)
void CloseAll(
    vsSaveChanges Save
)
void CloseAll(
    [InAttribute] vsSaveChanges Save
)
abstract CloseAll : 
        Save:vsSaveChanges -> unit 
function CloseAll(
    Save : vsSaveChanges
)

Parameters

Examples

Sub CloseAllExample()
  ' 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

.NET Framework Security

See Also

Reference

Documents Interface

EnvDTE Namespace