VsRdtSaveOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
__VSRDTSAVEOPTIONS, __VSRDTSAVEOPTIONS2
This enumeration supports a bitwise combination of its member values.
public enum class VsRdtSaveOptions
public enum class VsRdtSaveOptions
enum VsRdtSaveOptions
[System.Flags]
public enum VsRdtSaveOptions
[<System.Flags>]
type VsRdtSaveOptions =
Public Enum VsRdtSaveOptions
- Inheritance
-
VsRdtSaveOptions
- Attributes
Fields
ActivateDocOnErr | 16 | Activates the editor window of a document if it generates an error on save. |
DocClose | 65536 | Indicates that the save is a result of a document close. |
ForceSave | 2 | Forces a save even if not dirty. |
PromptSave | 1 | Prompts user to save the document. |
Reserved | -65536 | Reserved flag, do not use. |
SaveAllButThis | 64 | Indicates that everything will be saved normally except the exception. The supplied document token indicates the exception. |
SaveAs | 536870912 | Indicates that the SaveAs dialog is displayed. |
SaveIfDirty | 0 | Saves only if changes have been made. (This is the default.) |
SaveNoChildren | 4 | Saves only the root of the hierarchy passed in; does not include its children. |
SaveOnlyChildren | 8 | Saves only children of the hierarchy passed in; does not include the hierarchy itself. |
SkipNewUnsaved | 32 | Indicates that new unsaved files (created in the New File dialog) should be skipped. |