Condividi tramite


Metodo Documents.CloseAll

Chiude tutti i documenti aperti ed eventualmente li salva.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

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

Parametri

Esempi

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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Documents Interfaccia

Spazio dei nomi EnvDTE