Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum SHGDNF
Members
| Member name | Value | Description |
---|
| SHGDN_NORMAL | 0 |
When not combined with another flag, return the parent-relative name that identifies the item, suitable for displaying to the user. This name often does not include extra information such as the file name extension and does not need to be unique. This name might include information that identifies the folder that contains the item. For instance, this flag could cause IShellFolder::GetDisplayNameOf to return the string "username (on Machine)" for a particular user's folder.
|
| SHGDN_INFOLDER | 1 |
The name is relative to the folder from which the request was made. This is the name display to the user when used in the context of the folder. For example, it is used in the view and in the address bar path segment for the folder. This name should not include disambiguation information—for instance "username" instead of "username (on Machine)" for a particular user's folder.
Use this flag in combinations with SHGDN_FORPARSING and SHGDN_FOREDITING.
|
| SHGDN_FOREDITING | 4096 |
The name is used for in-place editing when the user renames the item.
|
| SHGDN_FORADDRESSBAR | 16384 |
The name is displayed in an address bar combo box.
|
| SHGDN_FORPARSING | 32768 |
The name is used for parsing. That is, it can be passed to IShellFolder::ParseDisplayName to recover the object's PIDL. The form this name takes depends on the particular object. When SHGDN_FORPARSING is used alone, the name is relative to the desktop. When combined with SHGDN_INFOLDER, the name is relative to the folder from which the request was made.
|
See Also