69 references to IOleInPlaceObject
System.Windows.Forms (29)
System\Windows\Forms\ActiveX\AxHost.AxContainer.cs (1)
488
using var inPlaceObject = tempSite.GetComScope<
IOleInPlaceObject
>();
System\Windows\Forms\ActiveX\AxHost.cs (4)
1166
using var inPlaceObject = GetComScope<
IOleInPlaceObject
>();
1479
using var inPlaceObject = GetComScope<
IOleInPlaceObject
>();
2189
using var inPlaceObject = GetComScope<
IOleInPlaceObject
>();
3138
using var inPlaceObject = GetComScope<
IOleInPlaceObject
>();
System\Windows\Forms\ActiveX\AxHost.OleInterfaces.cs (3)
306
using var inPlaceObject = _host.GetComScope<
IOleInPlaceObject
>();
438
using var inPlaceObject = _host.GetComScope<
IOleInPlaceObject
>();
461
using var inPlaceObject = _host.GetComScope<
IOleInPlaceObject
>();
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (3)
929
/// <inheritdoc cref="
IOleInPlaceObject
.InPlaceDeactivate"/>
1751
/// <inheritdoc cref="
IOleInPlaceObject
.SetObjectRects(RECT*, RECT*)"/>
1928
/// <inheritdoc cref="
IOleInPlaceObject
.UIDeactivate"/>
System\Windows\Forms\ActiveX\Control_ActiveXControlInterfaces.cs (15)
17
IOleInPlaceObject
.Interface,
85
=> ((
IOleInPlaceObject
.Interface)this).GetWindow(phwnd);
89
=> ((
IOleInPlaceObject
.Interface)this).ContextSensitiveHelp(fEnterMode);
117
HRESULT
IOleInPlaceObject
.Interface.GetWindow(HWND* phwnd) => ActiveXInstance.GetWindow(phwnd);
120
HRESULT
IOleInPlaceObject
.Interface.ContextSensitiveHelp(BOOL fEnterMode)
130
/// <inheritdoc cref="
IOleInPlaceObject
.InPlaceDeactivate"/>
131
HRESULT
IOleInPlaceObject
.Interface.InPlaceDeactivate() => ActiveXInstance.InPlaceDeactivate();
133
/// <inheritdoc cref="
IOleInPlaceObject
.UIDeactivate"/>
134
HRESULT
IOleInPlaceObject
.Interface.UIDeactivate() => ActiveXInstance.UIDeactivate();
136
/// <inheritdoc cref="
IOleInPlaceObject
.SetObjectRects(RECT*, RECT*)"/>
137
HRESULT
IOleInPlaceObject
.Interface.SetObjectRects(RECT* lprcPosRect, RECT* lprcClipRect) =>
140
/// <inheritdoc cref="
IOleInPlaceObject
.ReactivateAndUndo"/>
141
HRESULT
IOleInPlaceObject
.Interface.ReactivateAndUndo() => HRESULT.S_OK;
348
HRESULT IOleWindow.Interface.GetWindow(HWND* phwnd) => ((
IOleInPlaceObject
.Interface)this).GetWindow(phwnd);
352
=> ((
IOleInPlaceObject
.Interface)this).ContextSensitiveHelp(fEnterMode);
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (3)
45
private
IOleInPlaceObject
.Interface? _axOleInPlaceObject;
1018
_axOleInPlaceObject = (
IOleInPlaceObject
.Interface)_activeXInstance;
1180
internal
IOleInPlaceObject
.Interface? AXInPlaceObject => _axOleInPlaceObject;
System.Windows.Forms.Primitives (40)
Windows.Win32.IOleInPlaceObject.g.cs (35)
26
:IVTable<
IOleInPlaceObject
,
IOleInPlaceObject
.Vtbl>,IComIID {
42
return ((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this), riid, ppvObject);
47
return ((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,uint>)lpVtbl[1])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this));
52
return ((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,uint>)lpVtbl[2])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this));
68
private static winmdroot.Foundation.HRESULT GetWindow(
IOleInPlaceObject
* pThis, winmdroot.Foundation.HWND* phwnd)
87
return ((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this), phwnd);
93
private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(
IOleInPlaceObject
* pThis, winmdroot.Foundation.BOOL fEnterMode)
112
((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure();
118
private static winmdroot.Foundation.HRESULT InPlaceDeactivate(
IOleInPlaceObject
* pThis)
147
return ((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this));
153
private static winmdroot.Foundation.HRESULT UIDeactivate(
IOleInPlaceObject
* pThis)
181
return ((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this));
200
private static winmdroot.Foundation.HRESULT SetObjectRects(
IOleInPlaceObject
* pThis, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect)
230
return ((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this), lprcPosRect, lprcClipRect);
236
private static winmdroot.Foundation.HRESULT ReactivateAndUndo(
IOleInPlaceObject
* pThis)
261
((delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((
IOleInPlaceObject
*)Unsafe.AsPointer(ref this)).ThrowOnFailure();
285
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
287
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,uint> AddRef_2;
289
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,uint> Release_3;
291
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4;
293
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5;
295
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HRESULT> InPlaceDeactivate_6;
297
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HRESULT> UIDeactivate_7;
299
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetObjectRects_8;
301
internal delegate *unmanaged [Stdcall]<
IOleInPlaceObject
*,winmdroot.Foundation.HRESULT> ReactivateAndUndo_9;
Windows.Win32.IOleInPlaceObjectWindowless.g.cs (1)
383
:winmdroot.System.Ole.IOleWindow.Interface,winmdroot.System.Ole.
IOleInPlaceObject
.Interface {
Windows.Win32.System_Ole_IOleInPlaceObject_Extensions.g.cs (4)
23
/// <inheritdoc cref="winmdroot.System.Ole.
IOleInPlaceObject
.Interface.GetWindow(winmdroot.Foundation.HWND*)"/>
24
internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.
IOleInPlaceObject
.Interface @this, out winmdroot.Foundation.HWND phwnd)
33
/// <inheritdoc cref="winmdroot.System.Ole.
IOleInPlaceObject
.Interface.SetObjectRects(winmdroot.Foundation.RECT*, winmdroot.Foundation.RECT*)"/>
34
internal static unsafe winmdroot.Foundation.HRESULT SetObjectRects(this winmdroot.System.Ole.
IOleInPlaceObject
.Interface @this, in winmdroot.Foundation.RECT lprcPosRect, in winmdroot.Foundation.RECT lprcClipRect)