Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

IOleItemContainer (Interfaces)
 
.
Summary
IOleItemContainer interface definition
Summary
TODO - a short description

C# Definition:

[ComImport, Guid("0000011C-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IOleItemContainer
{
     // IParseDisplayName.
     [PreserveSig]
     int ParseDisplayName([In, MarshalAs(UnmanagedType.Interface)] IBindCtx pbc,
              [In, MarshalAs(UnmanagedType.LPWStr)] string pszDisplayName,
              out int pchEaten,
              out IMoniker ppmkOut);
     // IOleContainer.
     [PreserveSig]
     int EnumObjects([In, MarshalAs(UnmanagedType.U4)] int grfFlags, out IEnumUnknown ppenum);
     [PreserveSig]
     int LockContainer(bool fLock);
     // IOleItemContainer.
     [return: MarshalAs(UnmanagedType.Interface)]
     object GetObject([MarshalAs(UnmanagedType.LPWStr)] string pszItem,
              int dwSpeedNeeded,
              IBindCtx pbc,
              [In] ref Guid riid);
     [return: MarshalAs(UnmanagedType.Interface)]
     object GetObjectStorage([MarshalAs(UnmanagedType.LPWStr)] string pszItem,
                 IBindCtx pbc,
                 [In] ref Guid riid);
     [PreserveSig]
     int IsRunning([MarshalAs(UnmanagedType.LPWStr)] string pszItem);
};

VB Definition:

   TODO

User-Defined Types:

None.

Notes:

I include the methods from the inherited IParseDisplayName and IOleContainer interfaces because .Net's COM interop will not properly handle interface inheritance.

None.

Documentation

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions