Defines options for the SHGetViewStatePropertyBag method.
Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum SHGVSPB
Members
| Member name | Value | Description |
---|
| SHGVSPB_NONE | 0 |
No options.
|
| SHGVSPB_PERUSER | 1 |
Returns the per-user properties for the specified pidl.
|
| SHGVSPB_ALLUSERS | 2 |
Returns the All User properties for the specified pidl.
|
| SHGVSPB_PERFOLDER | 4 |
Returns the property bag for the folder specified by the pidl parameter.
|
| SHGVSPB_ALLFOLDERS | 8 |
Returns the property bag that applies to all folders.
|
| SHGVSPB_INHERIT | 16 |
Returns the property bag used to provide defaults for subfolders that do not have their property bag.
|
| SHGVSPB_ROAM | 32 |
Allows the property bag to roam. This flag cannot be combined with SHGVSPB_ALLFOLDERS.
|
| SHGVSPB_NOAUTODEFAULTS | -2147483648 |
Suppresses the search for a suitable default when the property bag cannot be found for the specified folder.
|
| SHGVSPB_FOLDER | 5 |
Combines SHGVSPB_PERUSER and SHGVSPB_PERFOLDER.
|
| SHGVSPB_FOLDERNODEFAULTS | -2147483643 |
Combines SHGVSPB_PERUSER, SHGVSPB_PERFOLDER, and SHGVSPB_NOAUTODEFAULTS.
|
| SHGVSPB_USERDEFAULTS | 9 |
Combines SHGVSPB_PERUSER and SHGVSPB_ALLFOLDERS.
|
| SHGVSPB_GLOBALDEFAULTS | 10 |
Combines SHGVSPB_ALLUSERS and SHGVSPB_ALLFOLDERS.
|
See Also