Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum SHCONTF
Members
| Member name | Value | Description |
---|
| SHCONTF_CHECKING_FOR_CHILDREN | 16 | Windows 7 and later. The calling application is checking for the existence of child items in the folder.
|
| SHCONTF_FOLDERS | 32 |
Include items that are folders in the enumeration.
|
| SHCONTF_NONFOLDERS | 64 |
Include items that are not folders in the enumeration.
|
| SHCONTF_INCLUDEHIDDEN | 128 |
Include hidden items in the enumeration. This does not include hidden system items. (To include hidden system items, use SHCONTF_INCLUDESUPERHIDDEN.)
|
| SHCONTF_INIT_ON_FIRST_NEXT | 256 |
No longer used; always assumed.
|
| SHCONTF_NETPRINTERSRCH | 512 |
The calling application is looking for printer objects.
|
| SHCONTF_SHAREABLE | 1024 |
The calling application is looking for resources that can be shared.
|
| SHCONTF_STORAGE | 2048 |
Include items with accessible storage and their ancestors, including hidden items.
|
| SHCONTF_NAVIGATION_ENUM | 4096 | Windows 7 and later. Child folders should provide a navigation enumeration.
|
| SHCONTF_FASTITEMS | 8192 | Windows Vista and later. The calling application is looking for resources that can be enumerated quickly.
|
| SHCONTF_FLATLIST | 16384 | Windows Vista and later. Enumerate items as a simple list even if the folder itself is not structured in that way.
|
| SHCONTF_ENABLE_ASYNC | 32768 | Windows Vista and later. The calling application is monitoring for change notifications. This means that the enumerator does not have to return all results. Items can be reported through change notifications.
|
| SHCONTF_INCLUDESUPERHIDDEN | 65536 | Windows 7 and later. Include hidden system items in the enumeration. This value does not include hidden non-system items. (To include hidden non-system items, use SHCONTF_INCLUDEHIDDEN.)
|
See Also