PROPSETFLAG (Constants)
Last changed: -165.21.154.112

.
Summary
The PROPSETFLAG constants are used in structured storage and define characteristics of a property set.

C# Constants:

namespace Microsoft.Win32.StructuredStorage{
   [Flags]
   public enum PROPSETFLAGS : uint
   {
     DEFAULT = 0,
     NONSIMPLE = 1,
     ANSI = 2,
     UNBUFFERED = 4,
     CASE_SENSITIVE = 8
   }
}

VB Constants:

TODO

Notes:

None.