__VSRDTSAVEOPTIONS2 Enumeration
Visual Studio 2015
Specifies additional save options for a document in the running document table (RDT).
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| RDTSAVEOPT_FSaveAs | Indicates that the save is a result of a document close. Determines if Visual Studio should display a Save As dialog box. | |
| RDTSAVEOPT_SaveAllButThis | The supplied document token indicates the exception and everything but it will be saved normally. | |
| RDTSAVEOPT_SkipNewUnsaved | Activates the editor window of a document, if a save operation causes an error. Indicates that new unsaved files (created via File.New File) should be skipped. |
From vsshell80.idl:
enum __VSRDTSAVEOPTIONS2 { RDTSAVEOPT_SkipNewUnsaved = 0x00000020, RDTSAVEOPT_FSaveAs = 0x20000000, }; typedef DWORD VSRDTSAVEOPTIONS2;
These flags can be used wherever the flags from the __VSRDTSAVEOPTIONS enumeration are specified. In fact, the flags from this __VSRDTSAVEOPTIONS2 enumeration are effectively an extension of the __VSRDTSAVEOPTIONS enumeration.
Show: