Metodo Documents.CloseAll
Chiude tutti i documenti aperti nell'ambiente ed eventualmente salvarli.
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
- Save
Tipo: EnvDTE.vsSaveChanges
facoltativo.In vsSaveChanges costante che rappresentano come rispondere alle modifiche apportate ai documenti.
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
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.