Enum win_nfd::shobjidl::DisplayNameType
source · pub enum DisplayNameType {
NormalDisplay,
ParentRelativeParsing,
DesktopAbsoluteParsing,
ParentRelativeEditing,
DesktopAbsoluteEditing,
FileSysPath,
Url,
ParentRelativeForAddressBar,
ParentRelative,
ParentRelativeForUi,
}
Expand description
Display name type for shellitem Requests the form of an item’s display name to retrieve through IShellItem::GetDisplayName and SHGetNameFromIDList.
Variants§
NormalDisplay
Returns the display name relative to the parent folder. In UI this name is generally ideal for display to the user.
ParentRelativeParsing
Returns the parsing name relative to the parent folder. This name is not suitable for use in UI.
DesktopAbsoluteParsing
Returns the parsing name relative to the desktop. This name is not suitable for use in UI.
ParentRelativeEditing
Returns the editing name relative to the parent folder. In UI this name is suitable for display to the user.
DesktopAbsoluteEditing
Returns the editing name relative to the desktop. In UI this name is suitable for display to the user.
FileSysPath
Returns the item’s file system path, if it has one. Only items that report SFGAO_FILESYSTEM have a file system path. When an item does not have a file system path, a call to IShellItem::GetDisplayName on that item will fail. In UI this name is suitable for display to the user in some cases, but note that it might not be specified for all items.
Url
Returns the item’s URL, if it has one. Some items do not have a URL, and in those cases a call to IShellItem::GetDisplayName will fail. This name is suitable for display to the user in some cases, but note that it might not be specified for all items.
ParentRelativeForAddressBar
Returns the path relative to the parent folder in a friendly format as displayed in an address bar. This name is suitable for display to the user.
ParentRelative
Returns the path relative to the parent folder.
ParentRelativeForUi
Introduced in Windows 8.
Trait Implementations§
source§impl Clone for DisplayNameType
impl Clone for DisplayNameType
source§fn clone(&self) -> DisplayNameType
fn clone(&self) -> DisplayNameType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more