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{
   public class PropsetflagConstants{
     public const uint PROPSETFLAG_DEFAULT = 0;
     public const uint PROPSETFLAG_NONSIMPLE = 1;
     public const uint PROPSETFLAG_ANSI = 2;
     public const uint PROPSETFLAG_UNBUFFERED = 4;
     public const uint PROPSETFLAG_CASE_SENSITIVE = 8;
   }
}

VB Constants:

TODO

Notes:

None.