30 references to OLEMISC
System.Windows.Forms (17)
System\Windows\Forms\ActiveX\AxHost.cs (6)
103private OLEMISC _miscStatusBits; 243HRESULT hr = oleObject.Value->GetMiscStatus(DVASPECT.DVASPECT_CONTENT, out OLEMISC bits); 3457private void ParseMiscBits(OLEMISC bits) 3460_axState[s_fOwnWindow] = bits.HasFlag(OLEMISC.OLEMISC_INVISIBLEATRUNTIME) && IsUserMode(); 3463_axState[s_fSimpleFrame] = bits.HasFlag(OLEMISC.OLEMISC_SIMPLEFRAME); 3471if (_miscStatusBits.HasFlag(OLEMISC.OLEMISC_SETCLIENTSITEFIRST))
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
1398_control.GetMiscStatus(DVASPECT.DVASPECT_CONTENT, out OLEMISC status);
System\Windows\Forms\ActiveX\Control_ActiveXControlInterfaces.cs (8)
315/// <inheritdoc cref="IOleObject.GetMiscStatus(DVASPECT, OLEMISC*)"/> 316HRESULT IOleObject.Interface.GetMiscStatus(DVASPECT dwAspect, OLEMISC* pdwStatus) 329OLEMISC status = OLEMISC.OLEMISC_ACTIVATEWHENVISIBLE | OLEMISC.OLEMISC_INSIDEOUT | OLEMISC.OLEMISC_SETCLIENTSITEFIRST; 332status |= OLEMISC.OLEMISC_RECOMPOSEONRESIZE; 337status |= OLEMISC.OLEMISC_ACTSLIKEBUTTON;
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (2)
897HRESULT hr = _axOleObject.GetMiscStatus(DVASPECT.DVASPECT_CONTENT, out OLEMISC bits); 898if (hr.Succeeded && bits.HasFlag(OLEMISC.OLEMISC_SETCLIENTSITEFIRST))
System.Windows.Forms.Primitives (13)
Windows.Win32.IOleObject.g.cs (8)
800 /// <inheritdoc cref="GetMiscStatus(winmdroot.System.Com.DVASPECT, winmdroot.System.Ole.OLEMISC*)"/> 801 internal unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, out winmdroot.System.Ole.OLEMISC pdwStatus) 803 fixed (winmdroot.System.Ole.OLEMISC* pdwStatusLocal = &pdwStatus) 813 private static winmdroot.Foundation.HRESULT GetMiscStatus(IOleObject* pThis, winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus) 843 public unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus) 845 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.System.Ole.OLEMISC* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IOleObject*)Unsafe.AsPointer(ref this), dwAspect, pdwStatus); 945 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.System.Ole.OLEMISC* ,winmdroot.Foundation.HRESULT> GetMiscStatus_23; 1051 unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus);
Windows.Win32.QACONTROL.g.cs (2)
44 internal OLEMISC dwMiscStatus 46 get => (OLEMISC)this._dwMiscStatus;
Windows.Win32.System_Ole_IOleObject_Extensions.g.cs (3)
99 /// <inheritdoc cref="winmdroot.System.Ole.IOleObject.Interface.GetMiscStatus(winmdroot.System.Com.DVASPECT, winmdroot.System.Ole.OLEMISC*)"/> 100 internal static unsafe winmdroot.Foundation.HRESULT GetMiscStatus(this winmdroot.System.Ole.IOleObject.Interface @this, winmdroot.System.Com.DVASPECT dwAspect, out winmdroot.System.Ole.OLEMISC pdwStatus) 102 fixed (winmdroot.System.Ole.OLEMISC* pdwStatusLocal = &pdwStatus)