Documents::CloseAll Method (vsSaveChanges)

 

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

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

void CloseAll(
	vsSaveChanges Save = vsSaveChanges::vsSaveChangesPrompt
)

Parameters

Save
Type: EnvDTE::vsSaveChanges

Optional. A vsSaveChanges constant representing how to react to changes made to documents.

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
Return to top
Show: