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.
IOleContainer (Interfaces)
.
C# Definition:
[ComImport, Guid("0000011B-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IOleContainer
{
// 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);
}
VB Definition:
TODO
User-Defined Types:
None.
Notes:
I include the methods from the inherited IParseDisplayName interface because .Net's COM interop will not properly handle interface inheritance.
IOleContainer interface definition
7/23/2008 5:27:54 PM - -220.233.210.211
IParseDisplayName interface definition
7/23/2008 5:28:40 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.