1 instantiation of ActiveXImpl
System.Windows.Forms (1)
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
95activeXImpl = Properties.AddValue(s_activeXImplProperty, new ActiveXImpl(this));
8 references to ActiveXImpl
System.Windows.Forms (8)
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (5)
80private ActiveXImpl ActiveXInstance 84if (!Properties.TryGetValue(s_activeXImplProperty, out ActiveXImpl? activeXImpl)) 1042throw new NotSupportedException(string.Format(SR.ControlNotSupportedInTrimming, nameof(ActiveXImpl))); 1442throw new NotSupportedException(string.Format(SR.ControlNotSupportedInTrimming, nameof(ActiveXImpl))); 1496throw new NotSupportedException(string.Format(SR.ControlNotSupportedInTrimming, nameof(ActiveXImpl)));
System\Windows\Forms\ActiveX\Control_ActiveXControlInterfaces.cs (1)
229*ppEnumOleVerb = ActiveXImpl.EnumVerbs();
System\Windows\Forms\Control.cs (2)
3145if (control.IsActiveX && control.Properties.TryGetValue(s_activeXImplProperty, out ActiveXImpl? activeX)) 4726Properties.GetValueOrDefault<ActiveXImpl>(s_activeXImplProperty)?.Dispose();