IShellItem (Interfaces)
Last changed: -63.118.230.241

.
Summary
TODO - a short description

C# Definition:

[ComImport]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[Guid("43826d1e-e718-42ee-bc55-a1e261c37bfe")]
public interface IShellItem {
    void BindToHandler(IntPtr pbc,
        [MarshalAs(UnmanagedType.LPStruct)]Guid bhid,
        [MarshalAs(UnmanagedType.LPStruct)]Guid riid,
        out IntPtr ppv);

    void GetParent(out IShellItem ppsi);

    void GetDisplayName(SIGDN sigdnName, out IntPtr ppszName);

    void GetAttributes(uint sfgaoMask, out uint psfgaoAttribs);

    void Compare(IShellItem psi, uint hint, out int piOrder);
};

VB Definition:

<ComImport()> _
<Guid("43826d1e-e718-42ee-bc55-a1e261c37bfe")> _
<InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _
Public Interface IShellItem
    Sub BindToHandler(ByVal pbc As IntPtr, _
        <MarshalAs(UnmanagedType.LPStruct)> ByVal bhid As Guid, _
        <MarshalAs(UnmanagedType.LPStruct)> ByVal riid As Guid, _
        ByRef ppv As IntPtr)

    Sub GetParent(ByRef ppsi As IShellItem)

    Sub GetDisplayName(ByVal sigdnName As SIGDN, ByRef ppszName As IntPtr)

    Sub GetAttributes(ByVal sfgaoMask As UInt32, ByRef psfgaoAttribs As UInt32)

    Sub Compare(ByVal psi As IShellItem, ByVal hint As UInt32, ByRef piOrder As Integer)
End Interface

User-Defined Types:

None.

Notes:

None.

Documentation
IShellItem on MSDN