Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Saves all documents currently open in the environment.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Sub SaveAll
void SaveAll()
void SaveAll()
abstract SaveAll : unit -> unit
function SaveAll()
Examples
Sub SaveAllExample()
' 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.