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 Interfaces, prefix the name with the module name and a period.
IOleItemContainer (Interfaces)
.
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.
IOleItemContainer interface definition
7/23/2008 5:28:23 PM - -220.233.210.211
IParseDisplayName interface definition
7/23/2008 5:28:40 PM - -220.233.210.211
IOleContainer interface definition
7/23/2008 5:27:54 PM - -220.233.210.211
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.