VSSAVEFLAGS Enumeration

 

Specifies file save options.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

[FlagsAttribute]
public enum VSSAVEFLAGS

Member nameDescription
VSSAVE_Save

Saves the current file to itself without being prompted for another file name.

VSSAVE_SaveAs

Saves the file to another file specified by the user when prompted.

VSSAVE_SaveCopyAs

Saves a copy of the file with a name specified by the user when prompted.

VSSAVE_SilentSave

Saves the file without prompting for a name or confirmation.

Currently there are no UI actions that cause VSSAVE_SaveAs and VSSAVE_SilentSave flags to be passed. VSSAVE_SilentSave flag is passed when the document is saved through a call from the DTE automation model.

From vsshell.idl:

Return to top
Show: