[python-win32] how to access IID_IPropertyStore interface

Mark Hammond skippy.hammond at gmail.com
Sun May 2 23:34:23 EDT 2021


On 3/05/2021 4:37 am, Piotr Miedzik wrote:
> I'm trying to write Jump Lists without PyQt5. In fact I'm rewriting
> this source https://github.com/qt/qtwinextras/blob/18bee52fe48500bca46de7e47d134940c48b524c/src/winextras/qwinjumplist.cpp#L141
> 
> To set title or separator I need to access `IID_IPropertyStore`
> interface (`{886D8EEB-8CF2-4446-8d02-CDBA1DBDCF99}`)

This is in the win32com.propsys.propsys module:

 >>> from win32com.propsys import propsys
 >>> propsys.IID_IPropertyStore
IID('{886D8EEB-8CF2-4446-8D02-CDBA1DBDCF99}')

Cheers,

Mark


More information about the python-win32 mailing list