__PROMPTONLOADFLAGS 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.
Flags to prompt user for an encoding on an open with specified codepage.
This enumeration supports a bitwise combination of its member values.
public enum class __PROMPTONLOADFLAGS
public enum class __PROMPTONLOADFLAGS
enum __PROMPTONLOADFLAGS
[System.Flags]
public enum __PROMPTONLOADFLAGS
[<System.Flags>]
type __PROMPTONLOADFLAGS =
Public Enum __PROMPTONLOADFLAGS
- Inheritance
-
__PROMPTONLOADFLAGS
- Attributes
Fields
Name | Value | Description |
---|---|---|
codepageNoPrompt | 0 | Prompt user. |
codepagePrompt | 1 | Do not prompt user. |
Remarks
Should only be used by editor factories supporting this kind of operation.
COM Signature
From textmgr.idl:
enum __PROMPTONLOADFLAGS {
codepageNoPrompt = 0x000000000,
codepagePrompt = 0x000000001
};
typedef DWORD PROMPTONLOADFLAGS;