__PROMPTONLOADFLAGS Enumeration
Visual Studio 2015
Flags to prompt user for an encoding on an open with specified codepage.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
| Member name | Description | |
|---|---|---|
| codepageNoPrompt | Prompt user. | |
| codepagePrompt | Do not prompt user. |
Should only be used by editor factories supporting this kind of operation.
From textmgr.idl:
enum __PROMPTONLOADFLAGS { codepageNoPrompt = 0x000000000, codepagePrompt = 0x000000001 }; typedef DWORD PROMPTONLOADFLAGS;
Show: