Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than propsys, prefix the name with the module name and a period.
PSGetItemPropertyHandler (propsys)
.
C# Signature:
[DllImport("Propsys.dll")]
static extern int PSGetItemPropertyHandler(IShellItem punkItem, bool fReadWrite, ref Guid riid, out IPropertyStore ppv);
public static IPropertyStore GetPropertyStoreFromShellItem(IShellItem shellitem, bool fReadWrite)
{
IPropertyStore result = null;
Guid iPropStoreGuid = new Guid("886d8eeb-8cf2-4446-8d02-cdba1dbdcf99");
int hr = PSGetItemPropertyHandler(shellitem, fReadWrite, ref iPropStoreGuid, out result);
return result;
}
Exposes methods that return either icons or thumbnails for Shell items.
8/12/2010 1:03:26 AM - rayz-24.124.21.170
TODO - a short description
11/5/2015 7:45:17 AM - -91.237.77.135
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).