IOleWindow (Interfaces)
Last changed: -82.151.112.12

.

Summary:

This interface provides methods that allow an application to obtain the handle to the various windows that participate in in-place activation, and also to enter and exit context-sensitive help mode.

Several other in-place activation interfaces are derived from this interface. Containers and objects must implement and use these interfaces in order to support in-place activation.

C# Definition:

[ComImport]
[Guid("00000114-0000-0000-C000-000000000046")]
[InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
public interface IOleWindow
{
     [PreserveSig] int GetWindow (
           out IntPtr phwnd) ;
     [PreserveSig] int ContextSensitiveHelp (
           [In, MarshalAs (UnmanagedType.Bool)] bool fEnterMode) ;
}

VB Definition:

<ComImport> _
<Guid("00000114-0000-0000-C000-000000000046")> _
<InterfaceType(ComInterfaceType.InterfaceIsIUnknown)>
Interface IOleWindow
   TODO
End Interface

User-Defined Types:

None.

Notes:

None.

Documentation
IOleWindow on MSDN