tagVSQuerySaveResult 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.
This enumeration specifies values that can be returned from the QuerySaveFile(String, UInt32, VSQEQS_FILE_ATTRIBUTE_DATA[], UInt32) method and the QuerySaveFiles(UInt32, Int32, String[], UInt32[], VSQEQS_FILE_ATTRIBUTE_DATA[], UInt32) method.
public enum class tagVSQuerySaveResult
public enum class tagVSQuerySaveResult
enum tagVSQuerySaveResult
public enum tagVSQuerySaveResult
type tagVSQuerySaveResult =
Public Enum tagVSQuerySaveResult
- Inheritance
-
tagVSQuerySaveResult
Fields
QSR_ForceSaveAs | 2 | The file cannot be saved using the original file name. The Save As command must be used. |
QSR_NoSave_Cancel | 1 | The file cannot be saved. User cancelled the Save. |
QSR_NoSave_Continue | 3 | The file cannot be saved, but other files in the batch can be processed. |
QSR_NoSave_NoisyPromptRequired | 4 | The file cannot be saved because user intervention is required; however, silent mode has been requested. |
QSR_NoSave_UserCanceled | 1 | The file cannot be saved. User pressed the Cancel button. |
QSR_SaveOK | 0 | The file can be saved. |
Remarks
These values are not bit flags.
The QSR_NoSave_UserCanceled
and QSR_NoSave_Cancel
flags are synonymous.