Click or drag to resize

Shell32AssociationString Enumeration

ASSOCSTR enumeration - Used by the AssocQueryString() function to define the type of string that is to be returned.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public enum AssociationString
Members
  Member nameValueDescription
None0None.
Command1A command string associated with a Shell verb.
Executable2 An executable from a Shell verb command string. For example, this string is found as the (Default) value for a subkey such as HKEY_CLASSES_ROOT\ApplicationName\shell\Open\command. If the command uses Rundll.exe, set the RemapRunDll flag in the attributes parameter of IQueryAssociations::GetString to retrieve the target executable.
FriendlyDocName3The friendly name of a document type.
FriendlyAppName4The friendly name of an executable file.
NoOpen5Ignore the information associated with the open subkey.
ShellNewValue6Look under the ShellNew subkey.
DdeCommand7A template for DDE commands.
DdeIfExec8The DDE command to use to create a process.
DdeApplication9The application name in a DDE broadcast.
DdeTopic10The topic name in a DDE broadcast.
InfoTip11 Corresponds to the InfoTip registry value. Returns an info tip for an item, or list of properties in the form of an IPropertyDescriptionList from which to create an info tip, such as when hovering the cursor over a file name. The list of properties can be parsed with PSGetPropertyDescriptionListFromString.
QuickTip12 Corresponds to the QuickTip registry value. This is the same as InfoTip, except that it always returns a list of property names in the form of an IPropertyDescriptionList. The difference between this value and InfoTip is that this returns properties that are safe for any scenario that causes slow property retrieval, such as offline or slow networks. Some of the properties returned from InfoTip might not be appropriate for slow property retrieval scenarios. The list of properties can be parsed with PSGetPropertyDescriptionListFromString.
TileInfo13 Corresponds to the TileInfo registry value. Contains a list of properties to be displayed for a particular file type in a Windows Explorer window that is in tile view. This is the same as InfoTip, but, like QuickTip, it also returns a list of property names in the form of an IPropertyDescriptionList. The list of properties can be parsed with PSGetPropertyDescriptionListFromString.
ContentType14 Describes a general type of MIME file association, such as image and bmp, so that applications can make general assumptions about a specific file type.
DefaultIcon15 Returns the path to the icon resources to use by default for this association. Positive numbers indicate an index into the dll's resource table, while negative numbers indicate a resource ID. An example of the syntax for the resource is "c:\myfolder\myfile.dll,-1".
ShellExtension16 For an object that has a Shell extension associated with it, you can use this to retrieve the CLSID of that Shell extension object by passing a string representation of the IID of the interface you want to retrieve as the pwszExtra parameter of IQueryAssociations::GetString. For example, if you want to retrieve a handler that implements the IExtractImage interface, you would specify "{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}", which is the IID of IExtractImage.
DropTarget17 For a verb invoked through COM and the IDropTarget interface, you can use this flag to retrieve the IDropTarget object's CLSID. This CLSID is registered in the DropTarget subkey. The verb is specified in the supplied file parameter in the call to IQueryAssociations::GetString.
DelegateExecute18 For a verb invoked through COM and the IExecuteCommand interface, you can use this flag to retrieve the IExecuteCommand object's CLSID. This CLSID is registered in the verb's command subkey as the DelegateExecute entry. The verb is specified in the supplied file parameter in the call to IQueryAssociations::GetString.
SupportedUriProtocols19(No description available on MSDN)
Max20The maximum defined Shell32AssociationString value, used for validation purposes.
See Also