Rename Managed.Windows.Forms to System.Windows.Forms for consistency.
[mono.git] / mcs / class / System.Windows.Forms / Documentation / en / System.Windows.Forms / AxHost.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="AxHost" FullName="System.Windows.Forms.AxHost">
3   <TypeSignature Language="C#" Value="public abstract class AxHost : System.Windows.Forms.Control, System.ComponentModel.ICustomTypeDescriptor, System.ComponentModel.ISupportInitialize" />
4   <AssemblyInfo>
5     <AssemblyName>System.Windows.Forms</AssemblyName>
6     <AssemblyVersion>1.0.5000.0</AssemblyVersion>
7     <AssemblyVersion>2.0.0.0</AssemblyVersion>
8   </AssemblyInfo>
9   <Base>
10     <BaseTypeName>System.Windows.Forms.Control</BaseTypeName>
11   </Base>
12   <Interfaces>
13     <Interface>
14       <InterfaceName>System.ComponentModel.ICustomTypeDescriptor</InterfaceName>
15     </Interface>
16     <Interface>
17       <InterfaceName>System.ComponentModel.ISupportInitialize</InterfaceName>
18     </Interface>
19   </Interfaces>
20   <Attributes>
21     <Attribute>
22       <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
23     </Attribute>
24     <Attribute>
25       <AttributeName>System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)</AttributeName>
26     </Attribute>
27     <Attribute>
28       <AttributeName>System.ComponentModel.ToolboxItem(false)</AttributeName>
29     </Attribute>
30     <Attribute>
31       <AttributeName>System.ComponentModel.DesignTimeVisible(false)</AttributeName>
32     </Attribute>
33     <Attribute>
34       <AttributeName>System.ComponentModel.Designer("System.Windows.Forms.Design.AxHostDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")</AttributeName>
35     </Attribute>
36     <Attribute>
37       <AttributeName>System.ComponentModel.DefaultEvent("Enter")</AttributeName>
38     </Attribute>
39   </Attributes>
40   <Docs>
41     <remarks>
42       <attribution license="cc4" from="Microsoft" modified="false" />
43       <para>You typically do not use the <see cref="T:System.Windows.Forms.AxHost" /> class directly. You can use the <format type="text/html"><a href="482C0D83-7144-4497-B626-87D2351B78D0">Windows Forms ActiveX Control Importer (AxImp.exe) </a></format> to generate the wrappers that extend <see cref="T:System.Windows.Forms.AxHost" />.</para>
44       <para>The ActiveX Control Importer generates a class that is derived from the <see cref="T:System.Windows.Forms.AxHost" /> class, and compiles it into a library file (DLL) that can be added as a reference to your application. Alternatively, you can use the /source switch with the ActiveX Control Importer and a C# file is generated for your <see cref="T:System.Windows.Forms.AxHost" /> derived class. You can then make changes to the code and recompile it into a library file.</para>
45       <block subset="none" type="note">
46         <para>If the name of a member of the ActiveX control matches a name defined in the .NET Framework, then the ActiveX Control Importer will prefix the member name with "Ctl" when it creates the <see cref="T:System.Windows.Forms.AxHost" /> derived class. For example, if your ActiveX control has a member named "Layout", it is renamed "CtlLayout" in the <see cref="T:System.Windows.Forms.AxHost" /> derived class because the Layout event is defined within the .NET Framework.</para>
47       </block>
48       <para>Most of the common properties of the <see cref="T:System.Windows.Forms.AxHost" /> class are only valid and used if the underlying ActiveX control exposes those properties. A few examples of the common properties are <see cref="P:System.Windows.Forms.Control.BackColor" />, <see cref="P:System.Windows.Forms.Control.Cursor" />, <see cref="P:System.Windows.Forms.Control.Font" />, and <see cref="P:System.Windows.Forms.Control.Text" />.</para>
49       <block subset="none" type="note">
50         <para>If you are using Visual Studio as your Windows Forms design environment, you can make an ActiveX control available to your application by adding the ActiveX control to your Toolbox. To accomplish this, right-click the <ui>Toolbox</ui>, select <ui>Customize Toolbox</ui>, then browse to the ActiveX control's.ocx file. For more information, see "Adding ActiveX Controls to Windows Forms" in the Visual Studio documentation.</para>
51       </block>
52     </remarks>
53     <summary>
54       <attribution license="cc4" from="Microsoft" modified="false" />
55       <para>Wraps ActiveX controls and exposes them as fully featured Windows Forms controls.</para>
56     </summary>
57   </Docs>
58   <Members>
59     <Member MemberName=".ctor">
60       <MemberSignature Language="C#" Value="protected AxHost (string clsid);" />
61       <MemberType>Constructor</MemberType>
62       <Parameters>
63         <Parameter Name="clsid" Type="System.String" />
64       </Parameters>
65       <Docs>
66         <remarks>To be added.</remarks>
67         <summary>
68           <attribution license="cc4" from="Microsoft" modified="false" />
69           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost" /> class, wrapping the ActiveX control indicated by the specified CLSID. </para>
70         </summary>
71         <param name="clsid">
72           <attribution license="cc4" from="Microsoft" modified="false" />The CLSID of the ActiveX control to wrap.</param>
73       </Docs>
74       <AssemblyInfo>
75         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
76         <AssemblyVersion>2.0.0.0</AssemblyVersion>
77       </AssemblyInfo>
78     </Member>
79     <Member MemberName=".ctor">
80       <MemberSignature Language="C#" Value="protected AxHost (string clsid, int flags);" />
81       <MemberType>Constructor</MemberType>
82       <Parameters>
83         <Parameter Name="clsid" Type="System.String" />
84         <Parameter Name="flags" Type="System.Int32" />
85       </Parameters>
86       <Docs>
87         <remarks>
88           <attribution license="cc4" from="Microsoft" modified="false" />
89           <para>If the binary representation of the <paramref name="flags" /> parameter value contains the bit represented by the value 0x1, the shortcut menu for the control will not contain an <ui>Edit</ui> option unless the ActiveX control explicitly provides it.</para>
90           <para>If the binary representation of the <paramref name="flags" /> parameter value contains the bit represented by the value 0x2, the shortcut menu for the control will contain a Properties option if the ActiveX control offers a set of property pages; otherwise, the shortcut menu will contain a Properties option only if the ActiveX control explicitly provides it.</para>
91         </remarks>
92         <summary>
93           <attribution license="cc4" from="Microsoft" modified="false" />
94           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.AxHost" /> class, wrapping the ActiveX control indicated by the specified CLSID, and using the shortcut-menu behavior indicated by the specified <paramref name="flags" /> value.</para>
95         </summary>
96         <param name="clsid">
97           <attribution license="cc4" from="Microsoft" modified="false" />The CLSID of the ActiveX control to wrap.</param>
98         <param name="flags">
99           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Int32" /> that modifies the shortcut-menu behavior for the control.</param>
100       </Docs>
101       <AssemblyInfo>
102         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
103         <AssemblyVersion>2.0.0.0</AssemblyVersion>
104       </AssemblyInfo>
105     </Member>
106     <Member MemberName="AttachInterfaces">
107       <MemberSignature Language="C#" Value="protected virtual void AttachInterfaces ();" />
108       <MemberType>Method</MemberType>
109       <ReturnValue>
110         <ReturnType>System.Void</ReturnType>
111       </ReturnValue>
112       <Parameters />
113       <Docs>
114         <remarks>To be added.</remarks>
115         <summary>
116           <attribution license="cc4" from="Microsoft" modified="false" />
117           <para>When overridden in a derived class, attaches interfaces to the underlying ActiveX control.</para>
118         </summary>
119       </Docs>
120       <AssemblyInfo>
121         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
122         <AssemblyVersion>2.0.0.0</AssemblyVersion>
123       </AssemblyInfo>
124     </Member>
125     <Member MemberName="BackColor">
126       <MemberSignature Language="C#" Value="public override System.Drawing.Color BackColor { set; get; }" />
127       <MemberType>Property</MemberType>
128       <Attributes>
129         <Attribute>
130           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
131         </Attribute>
132         <Attribute>
133           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
134         </Attribute>
135       </Attributes>
136       <ReturnValue>
137         <ReturnType>System.Drawing.Color</ReturnType>
138       </ReturnValue>
139       <Docs>
140         <value>To be added.</value>
141         <remarks>To be added.</remarks>
142         <summary>
143           <attribution license="cc4" from="Microsoft" modified="false" />
144           <para>This member is not meaningful for this control.</para>
145         </summary>
146       </Docs>
147       <AssemblyInfo>
148         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
149         <AssemblyVersion>2.0.0.0</AssemblyVersion>
150       </AssemblyInfo>
151     </Member>
152     <Member MemberName="BackColorChanged">
153       <MemberSignature Language="C#" Value="public event EventHandler BackColorChanged;" />
154       <MemberType>Event</MemberType>
155       <Attributes>
156         <Attribute>
157           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
158         </Attribute>
159         <Attribute>
160           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
161         </Attribute>
162       </Attributes>
163       <ReturnValue>
164         <ReturnType>System.EventHandler</ReturnType>
165       </ReturnValue>
166       <Docs>
167         <remarks>
168           <attribution license="cc4" from="Microsoft" modified="false" />
169           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.BackColorChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
170         </remarks>
171         <summary>
172           <attribution license="cc4" from="Microsoft" modified="false" />
173           <para>The <see cref="E:System.Windows.Forms.AxHost.BackColorChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
174         </summary>
175       </Docs>
176       <AssemblyInfo>
177         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
178         <AssemblyVersion>2.0.0.0</AssemblyVersion>
179       </AssemblyInfo>
180     </Member>
181     <Member MemberName="BackgroundImage">
182       <MemberSignature Language="C#" Value="public override System.Drawing.Image BackgroundImage { set; get; }" />
183       <MemberType>Property</MemberType>
184       <Attributes>
185         <Attribute>
186           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
187         </Attribute>
188         <Attribute>
189           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
190         </Attribute>
191         <Attribute>
192           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
193         </Attribute>
194       </Attributes>
195       <ReturnValue>
196         <ReturnType>System.Drawing.Image</ReturnType>
197       </ReturnValue>
198       <Docs>
199         <value>To be added.</value>
200         <remarks>To be added.</remarks>
201         <summary>
202           <attribution license="cc4" from="Microsoft" modified="false" />
203           <para>This property is not relevant for this class.</para>
204         </summary>
205       </Docs>
206       <AssemblyInfo>
207         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
208         <AssemblyVersion>2.0.0.0</AssemblyVersion>
209       </AssemblyInfo>
210     </Member>
211     <Member MemberName="BackgroundImageChanged">
212       <MemberSignature Language="C#" Value="public event EventHandler BackgroundImageChanged;" />
213       <MemberType>Event</MemberType>
214       <Attributes>
215         <Attribute>
216           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
217         </Attribute>
218         <Attribute>
219           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
220         </Attribute>
221       </Attributes>
222       <ReturnValue>
223         <ReturnType>System.EventHandler</ReturnType>
224       </ReturnValue>
225       <Docs>
226         <remarks>
227           <attribution license="cc4" from="Microsoft" modified="false" />
228           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.BackgroundImageChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
229         </remarks>
230         <summary>
231           <attribution license="cc4" from="Microsoft" modified="false" />
232           <para>The <see cref="E:System.Windows.Forms.AxHost.BackgroundImageChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
233         </summary>
234       </Docs>
235       <AssemblyInfo>
236         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
237         <AssemblyVersion>2.0.0.0</AssemblyVersion>
238       </AssemblyInfo>
239     </Member>
240     <Member MemberName="BackgroundImageLayout">
241       <MemberSignature Language="C#" Value="public override System.Windows.Forms.ImageLayout BackgroundImageLayout { set; get; }" />
242       <MemberType>Property</MemberType>
243       <AssemblyInfo>
244         <AssemblyVersion>2.0.0.0</AssemblyVersion>
245       </AssemblyInfo>
246       <Attributes>
247         <Attribute>
248           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
249         </Attribute>
250         <Attribute>
251           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
252         </Attribute>
253         <Attribute>
254           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
255         </Attribute>
256       </Attributes>
257       <ReturnValue>
258         <ReturnType>System.Windows.Forms.ImageLayout</ReturnType>
259       </ReturnValue>
260       <Docs>
261         <value>To be added.</value>
262         <remarks>To be added.</remarks>
263         <summary>
264           <attribution license="cc4" from="Microsoft" modified="false" />
265           <para>This property is not relevant for this class.</para>
266         </summary>
267       </Docs>
268     </Member>
269     <Member MemberName="BackgroundImageLayoutChanged">
270       <MemberSignature Language="C#" Value="public event EventHandler BackgroundImageLayoutChanged;" />
271       <MemberType>Event</MemberType>
272       <AssemblyInfo>
273         <AssemblyVersion>2.0.0.0</AssemblyVersion>
274       </AssemblyInfo>
275       <Attributes>
276         <Attribute>
277           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
278         </Attribute>
279         <Attribute>
280           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
281         </Attribute>
282       </Attributes>
283       <ReturnValue>
284         <ReturnType>System.EventHandler</ReturnType>
285       </ReturnValue>
286       <Docs>
287         <remarks>To be added.</remarks>
288         <summary>
289           <attribution license="cc4" from="Microsoft" modified="false" />
290           <para>This event is not relevant for this class.</para>
291         </summary>
292       </Docs>
293     </Member>
294     <Member MemberName="BeginInit">
295       <MemberSignature Language="C#" Value="public void BeginInit ();" />
296       <MemberType>Method</MemberType>
297       <ReturnValue>
298         <ReturnType>System.Void</ReturnType>
299       </ReturnValue>
300       <Parameters />
301       <Docs>
302         <remarks>
303           <attribution license="cc4" from="Microsoft" modified="false" />
304           <para>Design environments typically use this method to start the initialization of a component that is used on a form or used by another component. The <see cref="M:System.Windows.Forms.AxHost.EndInit" /> method ends the initialization. Using the <see cref="M:System.Windows.Forms.AxHost.BeginInit" /> and <see cref="M:System.Windows.Forms.AxHost.EndInit" /> methods prevents the control from being used before it is fully initialized. The initialization occurs at run time.</para>
305         </remarks>
306         <summary>
307           <attribution license="cc4" from="Microsoft" modified="false" />
308           <para>Begins the initialization of the ActiveX control.</para>
309         </summary>
310       </Docs>
311       <AssemblyInfo>
312         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
314       </AssemblyInfo>
315       <Attributes>
316         <Attribute>
317           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
318         </Attribute>
319       </Attributes>
320     </Member>
321     <Member MemberName="BindingContextChanged">
322       <MemberSignature Language="C#" Value="public event EventHandler BindingContextChanged;" />
323       <MemberType>Event</MemberType>
324       <Attributes>
325         <Attribute>
326           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
327         </Attribute>
328         <Attribute>
329           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
330         </Attribute>
331       </Attributes>
332       <ReturnValue>
333         <ReturnType>System.EventHandler</ReturnType>
334       </ReturnValue>
335       <Docs>
336         <remarks>
337           <attribution license="cc4" from="Microsoft" modified="false" />
338           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.BindingContextChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
339         </remarks>
340         <summary>
341           <attribution license="cc4" from="Microsoft" modified="false" />
342           <para>The <see cref="E:System.Windows.Forms.AxHost.BindingContextChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
343         </summary>
344       </Docs>
345       <AssemblyInfo>
346         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
347         <AssemblyVersion>2.0.0.0</AssemblyVersion>
348       </AssemblyInfo>
349     </Member>
350     <Member MemberName="ChangeUICues">
351       <MemberSignature Language="C#" Value="public event System.Windows.Forms.UICuesEventHandler ChangeUICues;" />
352       <MemberType>Event</MemberType>
353       <Attributes>
354         <Attribute>
355           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
356         </Attribute>
357         <Attribute>
358           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
359         </Attribute>
360       </Attributes>
361       <ReturnValue>
362         <ReturnType>System.Windows.Forms.UICuesEventHandler</ReturnType>
363       </ReturnValue>
364       <Docs>
365         <remarks>
366           <attribution license="cc4" from="Microsoft" modified="false" />
367           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.ChangeUICues" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
368         </remarks>
369         <summary>
370           <attribution license="cc4" from="Microsoft" modified="false" />
371           <para>The <see cref="E:System.Windows.Forms.AxHost.ChangeUICues" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
372         </summary>
373       </Docs>
374       <AssemblyInfo>
375         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
376         <AssemblyVersion>2.0.0.0</AssemblyVersion>
377       </AssemblyInfo>
378     </Member>
379     <Member MemberName="Click">
380       <MemberSignature Language="C#" Value="public event EventHandler Click;" />
381       <MemberType>Event</MemberType>
382       <Attributes>
383         <Attribute>
384           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
385         </Attribute>
386         <Attribute>
387           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
388         </Attribute>
389       </Attributes>
390       <ReturnValue>
391         <ReturnType>System.EventHandler</ReturnType>
392       </ReturnValue>
393       <Docs>
394         <remarks>
395           <attribution license="cc4" from="Microsoft" modified="false" />
396           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.Click" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
397         </remarks>
398         <summary>
399           <attribution license="cc4" from="Microsoft" modified="false" />
400           <para>The <see cref="E:System.Windows.Forms.AxHost.Click" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
401         </summary>
402       </Docs>
403       <AssemblyInfo>
404         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
405         <AssemblyVersion>2.0.0.0</AssemblyVersion>
406       </AssemblyInfo>
407     </Member>
408     <Member MemberName="ContainingControl">
409       <MemberSignature Language="C#" Value="public System.Windows.Forms.ContainerControl ContainingControl { set; get; }" />
410       <MemberType>Property</MemberType>
411       <Attributes>
412         <Attribute>
413           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
414         </Attribute>
415         <Attribute>
416           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
417         </Attribute>
418         <Attribute>
419           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
420         </Attribute>
421       </Attributes>
422       <ReturnValue>
423         <ReturnType>System.Windows.Forms.ContainerControl</ReturnType>
424       </ReturnValue>
425       <Docs>
426         <value>To be added.</value>
427         <remarks>
428           <attribution license="cc4" from="Microsoft" modified="false" />
429           <para>The <see cref="P:System.Windows.Forms.AxHost.ContainingControl" /> property value can be different from the <see cref="P:System.Windows.Forms.Control.Parent" /> property. The <see cref="T:System.Windows.Forms.ContainerControl" /> represented by this property is the ActiveX control's logical container. For example, if an ActiveX control is hosted in a <see cref="T:System.Windows.Forms.GroupBox" /> control, and the <see cref="T:System.Windows.Forms.GroupBox" /> is contained on a <see cref="T:System.Windows.Forms.Form" />, then the <see cref="P:System.Windows.Forms.AxHost.ContainingControl" /> property value of the ActiveX control is the <see cref="T:System.Windows.Forms.Form" />, and the <see cref="P:System.Windows.Forms.Control.Parent" /> property value is the <see cref="T:System.Windows.Forms.GroupBox" /> control.</para>
430         </remarks>
431         <summary>
432           <attribution license="cc4" from="Microsoft" modified="false" />
433           <para>Gets or sets the control containing the ActiveX control.</para>
434         </summary>
435       </Docs>
436       <AssemblyInfo>
437         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
438         <AssemblyVersion>2.0.0.0</AssemblyVersion>
439       </AssemblyInfo>
440     </Member>
441     <Member MemberName="ContextMenu">
442       <MemberSignature Language="C#" Value="public override System.Windows.Forms.ContextMenu ContextMenu { set; get; }" />
443       <MemberType>Property</MemberType>
444       <Attributes>
445         <Attribute>
446           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
447         </Attribute>
448         <Attribute>
449           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
450         </Attribute>
451       </Attributes>
452       <ReturnValue>
453         <ReturnType>System.Windows.Forms.ContextMenu</ReturnType>
454       </ReturnValue>
455       <Docs>
456         <value>To be added.</value>
457         <remarks>To be added.</remarks>
458         <summary>
459           <attribution license="cc4" from="Microsoft" modified="false" />
460           <para>This property is not relevant for this class.</para>
461         </summary>
462       </Docs>
463       <AssemblyInfo>
464         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
465         <AssemblyVersion>2.0.0.0</AssemblyVersion>
466       </AssemblyInfo>
467     </Member>
468     <Member MemberName="ContextMenuChanged">
469       <MemberSignature Language="C#" Value="public event EventHandler ContextMenuChanged;" />
470       <MemberType>Event</MemberType>
471       <Attributes>
472         <Attribute>
473           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
474         </Attribute>
475         <Attribute>
476           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
477         </Attribute>
478       </Attributes>
479       <ReturnValue>
480         <ReturnType>System.EventHandler</ReturnType>
481       </ReturnValue>
482       <Docs>
483         <remarks>
484           <attribution license="cc4" from="Microsoft" modified="false" />
485           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.ContextMenuChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
486         </remarks>
487         <summary>
488           <attribution license="cc4" from="Microsoft" modified="false" />
489           <para>The <see cref="E:System.Windows.Forms.AxHost.ContextMenuChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
490         </summary>
491       </Docs>
492       <AssemblyInfo>
493         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
494         <AssemblyVersion>2.0.0.0</AssemblyVersion>
495       </AssemblyInfo>
496     </Member>
497     <Member MemberName="CreateHandle">
498       <MemberSignature Language="C#" Value="protected override void CreateHandle ();" />
499       <MemberType>Method</MemberType>
500       <ReturnValue>
501         <ReturnType>System.Void</ReturnType>
502       </ReturnValue>
503       <Parameters />
504       <Docs>
505         <summary>To be added.</summary>
506         <remarks>To be added.</remarks>
507         <since version=".NET 2.0" />
508       </Docs>
509       <AssemblyInfo>
510         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
511         <AssemblyVersion>2.0.0.0</AssemblyVersion>
512       </AssemblyInfo>
513     </Member>
514     <Member MemberName="CreateInstanceCore">
515       <MemberSignature Language="C#" Value="protected virtual object CreateInstanceCore (Guid clsid);" />
516       <MemberType>Method</MemberType>
517       <AssemblyInfo>
518         <AssemblyVersion>2.0.0.0</AssemblyVersion>
519       </AssemblyInfo>
520       <ReturnValue>
521         <ReturnType>System.Object</ReturnType>
522       </ReturnValue>
523       <Parameters>
524         <Parameter Name="clsid" Type="System.Guid" />
525       </Parameters>
526       <Docs>
527         <remarks>To be added.</remarks>
528         <summary>
529           <attribution license="cc4" from="Microsoft" modified="false" />
530           <para>Called by the system to create the ActiveX control.</para>
531         </summary>
532         <returns>
533           <attribution license="cc4" from="Microsoft" modified="false" />
534           <para>An <see cref="T:System.Object" /> representing the ActiveX control. </para>
535         </returns>
536         <param name="clsid">
537           <attribution license="cc4" from="Microsoft" modified="false" />The CLSID of the ActiveX control.</param>
538       </Docs>
539     </Member>
540     <Member MemberName="CreateParams">
541       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.CreateParams CreateParams { get; }" />
542       <MemberType>Property</MemberType>
543       <ReturnValue>
544         <ReturnType>System.Windows.Forms.CreateParams</ReturnType>
545       </ReturnValue>
546       <Docs>
547         <summary>To be added.</summary>
548         <value>To be added.</value>
549         <remarks>To be added.</remarks>
550       </Docs>
551       <AssemblyInfo>
552         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
553         <AssemblyVersion>2.0.0.0</AssemblyVersion>
554       </AssemblyInfo>
555     </Member>
556     <Member MemberName="CreateSink">
557       <MemberSignature Language="C#" Value="protected virtual void CreateSink ();" />
558       <MemberType>Method</MemberType>
559       <ReturnValue>
560         <ReturnType>System.Void</ReturnType>
561       </ReturnValue>
562       <Parameters />
563       <Docs>
564         <remarks>
565           <attribution license="cc4" from="Microsoft" modified="false" />
566           <para>This base-class implementation is empty.</para>
567         </remarks>
568         <summary>
569           <attribution license="cc4" from="Microsoft" modified="false" />
570           <para>Called by the control to prepare it for listening to events.</para>
571         </summary>
572       </Docs>
573       <AssemblyInfo>
574         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
575         <AssemblyVersion>2.0.0.0</AssemblyVersion>
576       </AssemblyInfo>
577       <Attributes>
578         <Attribute>
579           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
580         </Attribute>
581       </Attributes>
582     </Member>
583     <Member MemberName="Cursor">
584       <MemberSignature Language="C#" Value="public override System.Windows.Forms.Cursor Cursor { set; get; }" />
585       <MemberType>Property</MemberType>
586       <Attributes>
587         <Attribute>
588           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
589         </Attribute>
590         <Attribute>
591           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
592         </Attribute>
593       </Attributes>
594       <ReturnValue>
595         <ReturnType>System.Windows.Forms.Cursor</ReturnType>
596       </ReturnValue>
597       <Docs>
598         <value>To be added.</value>
599         <remarks>To be added.</remarks>
600         <since version=".NET 2.0" />
601         <summary>
602           <attribution license="cc4" from="Microsoft" modified="false" />
603           <para>This property is not relevant for this class.</para>
604         </summary>
605       </Docs>
606       <AssemblyInfo>
607         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
608         <AssemblyVersion>2.0.0.0</AssemblyVersion>
609       </AssemblyInfo>
610     </Member>
611     <Member MemberName="CursorChanged">
612       <MemberSignature Language="C#" Value="public event EventHandler CursorChanged;" />
613       <MemberType>Event</MemberType>
614       <Attributes>
615         <Attribute>
616           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
617         </Attribute>
618         <Attribute>
619           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
620         </Attribute>
621       </Attributes>
622       <ReturnValue>
623         <ReturnType>System.EventHandler</ReturnType>
624       </ReturnValue>
625       <Docs>
626         <remarks>
627           <attribution license="cc4" from="Microsoft" modified="false" />
628           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.CursorChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
629         </remarks>
630         <summary>
631           <attribution license="cc4" from="Microsoft" modified="false" />
632           <para>The <see cref="E:System.Windows.Forms.AxHost.CursorChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
633         </summary>
634       </Docs>
635       <AssemblyInfo>
636         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
637         <AssemblyVersion>2.0.0.0</AssemblyVersion>
638       </AssemblyInfo>
639     </Member>
640     <Member MemberName="DefaultSize">
641       <MemberSignature Language="C#" Value="protected override System.Drawing.Size DefaultSize { get; }" />
642       <MemberType>Property</MemberType>
643       <ReturnValue>
644         <ReturnType>System.Drawing.Size</ReturnType>
645       </ReturnValue>
646       <Docs>
647         <summary>To be added.</summary>
648         <value>To be added.</value>
649         <remarks>To be added.</remarks>
650       </Docs>
651       <AssemblyInfo>
652         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
653         <AssemblyVersion>2.0.0.0</AssemblyVersion>
654       </AssemblyInfo>
655     </Member>
656     <Member MemberName="DestroyHandle">
657       <MemberSignature Language="C#" Value="protected override void DestroyHandle ();" />
658       <MemberType>Method</MemberType>
659       <ReturnValue>
660         <ReturnType>System.Void</ReturnType>
661       </ReturnValue>
662       <Parameters />
663       <Docs>
664         <summary>To be added.</summary>
665         <remarks>To be added.</remarks>
666       </Docs>
667       <AssemblyInfo>
668         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
669         <AssemblyVersion>2.0.0.0</AssemblyVersion>
670       </AssemblyInfo>
671     </Member>
672     <Member MemberName="DetachSink">
673       <MemberSignature Language="C#" Value="protected virtual void DetachSink ();" />
674       <MemberType>Method</MemberType>
675       <ReturnValue>
676         <ReturnType>System.Void</ReturnType>
677       </ReturnValue>
678       <Parameters />
679       <Docs>
680         <remarks>
681           <attribution license="cc4" from="Microsoft" modified="false" />
682           <para>This base-class implementation is empty.</para>
683         </remarks>
684         <summary>
685           <attribution license="cc4" from="Microsoft" modified="false" />
686           <para>Called by the control when it stops listening to events.</para>
687         </summary>
688       </Docs>
689       <AssemblyInfo>
690         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
691         <AssemblyVersion>2.0.0.0</AssemblyVersion>
692       </AssemblyInfo>
693       <Attributes>
694         <Attribute>
695           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
696         </Attribute>
697       </Attributes>
698     </Member>
699     <Member MemberName="Dispose">
700       <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
701       <MemberType>Method</MemberType>
702       <ReturnValue>
703         <ReturnType>System.Void</ReturnType>
704       </ReturnValue>
705       <Parameters>
706         <Parameter Name="disposing" Type="System.Boolean" />
707       </Parameters>
708       <Docs>
709         <param name="disposing">To be added.</param>
710         <summary>To be added.</summary>
711         <remarks>To be added.</remarks>
712       </Docs>
713       <AssemblyInfo>
714         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
715         <AssemblyVersion>2.0.0.0</AssemblyVersion>
716       </AssemblyInfo>
717     </Member>
718     <Member MemberName="DoubleClick">
719       <MemberSignature Language="C#" Value="public event EventHandler DoubleClick;" />
720       <MemberType>Event</MemberType>
721       <Attributes>
722         <Attribute>
723           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
724         </Attribute>
725         <Attribute>
726           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
727         </Attribute>
728       </Attributes>
729       <ReturnValue>
730         <ReturnType>System.EventHandler</ReturnType>
731       </ReturnValue>
732       <Docs>
733         <remarks>
734           <attribution license="cc4" from="Microsoft" modified="false" />
735           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.DoubleClick" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
736         </remarks>
737         <summary>
738           <attribution license="cc4" from="Microsoft" modified="false" />
739           <para>The <see cref="E:System.Windows.Forms.AxHost.DoubleClick" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
740         </summary>
741       </Docs>
742       <AssemblyInfo>
743         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
744         <AssemblyVersion>2.0.0.0</AssemblyVersion>
745       </AssemblyInfo>
746     </Member>
747     <Member MemberName="DoVerb">
748       <MemberSignature Language="C#" Value="public void DoVerb (int verb);" />
749       <MemberType>Method</MemberType>
750       <ReturnValue>
751         <ReturnType>System.Void</ReturnType>
752       </ReturnValue>
753       <Parameters>
754         <Parameter Name="verb" Type="System.Int32" />
755       </Parameters>
756       <Docs>
757         <remarks>
758           <attribution license="cc4" from="Microsoft" modified="false" />
759           <para>This method passes the specified verb to the <see cref="http://go.microsoft.com/fwlink/?LinkId=166076">IOleObject::DoVerb</see> method of the hosted control.</para>
760         </remarks>
761         <summary>
762           <attribution license="cc4" from="Microsoft" modified="false" />
763           <para>Requests that an object perform an action in response to an end-user's action.</para>
764         </summary>
765         <param name="verb">
766           <attribution license="cc4" from="Microsoft" modified="false" />One of the actions enumerated for the object in IOleObject::EnumVerbs.</param>
767       </Docs>
768       <AssemblyInfo>
769         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
770         <AssemblyVersion>2.0.0.0</AssemblyVersion>
771       </AssemblyInfo>
772     </Member>
773     <Member MemberName="DragDrop">
774       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DragEventHandler DragDrop;" />
775       <MemberType>Event</MemberType>
776       <Attributes>
777         <Attribute>
778           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
779         </Attribute>
780         <Attribute>
781           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
782         </Attribute>
783       </Attributes>
784       <ReturnValue>
785         <ReturnType>System.Windows.Forms.DragEventHandler</ReturnType>
786       </ReturnValue>
787       <Docs>
788         <remarks>
789           <attribution license="cc4" from="Microsoft" modified="false" />
790           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.DragDrop" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
791         </remarks>
792         <summary>
793           <attribution license="cc4" from="Microsoft" modified="false" />
794           <para>The <see cref="E:System.Windows.Forms.AxHost.DragDrop" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
795         </summary>
796       </Docs>
797       <AssemblyInfo>
798         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
799         <AssemblyVersion>2.0.0.0</AssemblyVersion>
800       </AssemblyInfo>
801     </Member>
802     <Member MemberName="DragEnter">
803       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DragEventHandler DragEnter;" />
804       <MemberType>Event</MemberType>
805       <Attributes>
806         <Attribute>
807           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
808         </Attribute>
809         <Attribute>
810           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
811         </Attribute>
812       </Attributes>
813       <ReturnValue>
814         <ReturnType>System.Windows.Forms.DragEventHandler</ReturnType>
815       </ReturnValue>
816       <Docs>
817         <remarks>
818           <attribution license="cc4" from="Microsoft" modified="false" />
819           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.DragEnter" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
820         </remarks>
821         <summary>
822           <attribution license="cc4" from="Microsoft" modified="false" />
823           <para>The <see cref="E:System.Windows.Forms.AxHost.DragEnter" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
824         </summary>
825       </Docs>
826       <AssemblyInfo>
827         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
828         <AssemblyVersion>2.0.0.0</AssemblyVersion>
829       </AssemblyInfo>
830     </Member>
831     <Member MemberName="DragLeave">
832       <MemberSignature Language="C#" Value="public event EventHandler DragLeave;" />
833       <MemberType>Event</MemberType>
834       <Attributes>
835         <Attribute>
836           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
837         </Attribute>
838         <Attribute>
839           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
840         </Attribute>
841       </Attributes>
842       <ReturnValue>
843         <ReturnType>System.EventHandler</ReturnType>
844       </ReturnValue>
845       <Docs>
846         <remarks>
847           <attribution license="cc4" from="Microsoft" modified="false" />
848           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.DragLeave" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
849         </remarks>
850         <summary>
851           <attribution license="cc4" from="Microsoft" modified="false" />
852           <para>The <see cref="E:System.Windows.Forms.AxHost.DragLeave" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
853         </summary>
854       </Docs>
855       <AssemblyInfo>
856         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
857         <AssemblyVersion>2.0.0.0</AssemblyVersion>
858       </AssemblyInfo>
859     </Member>
860     <Member MemberName="DragOver">
861       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DragEventHandler DragOver;" />
862       <MemberType>Event</MemberType>
863       <Attributes>
864         <Attribute>
865           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
866         </Attribute>
867         <Attribute>
868           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
869         </Attribute>
870       </Attributes>
871       <ReturnValue>
872         <ReturnType>System.Windows.Forms.DragEventHandler</ReturnType>
873       </ReturnValue>
874       <Docs>
875         <remarks>
876           <attribution license="cc4" from="Microsoft" modified="false" />
877           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.DragOver" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
878         </remarks>
879         <summary>
880           <attribution license="cc4" from="Microsoft" modified="false" />
881           <para>The <see cref="E:System.Windows.Forms.AxHost.DragOver" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
882         </summary>
883       </Docs>
884       <AssemblyInfo>
885         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
886         <AssemblyVersion>2.0.0.0</AssemblyVersion>
887       </AssemblyInfo>
888     </Member>
889     <Member MemberName="DrawToBitmap">
890       <MemberSignature Language="C#" Value="public void DrawToBitmap (System.Drawing.Bitmap bitmap, System.Drawing.Rectangle targetBounds);" />
891       <MemberType>Method</MemberType>
892       <AssemblyInfo>
893         <AssemblyVersion>2.0.0.0</AssemblyVersion>
894       </AssemblyInfo>
895       <Attributes>
896         <Attribute>
897           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
898         </Attribute>
899       </Attributes>
900       <ReturnValue>
901         <ReturnType>System.Void</ReturnType>
902       </ReturnValue>
903       <Parameters>
904         <Parameter Name="bitmap" Type="System.Drawing.Bitmap" />
905         <Parameter Name="targetBounds" Type="System.Drawing.Rectangle" />
906       </Parameters>
907       <Docs>
908         <remarks>To be added.</remarks>
909         <summary>
910           <attribution license="cc4" from="Microsoft" modified="false" />
911           <para>This method is not supported by this control.</para>
912         </summary>
913         <param name="bitmap">
914           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Bitmap" />.</param>
915         <param name="targetBounds">
916           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Rectangle" />.</param>
917       </Docs>
918     </Member>
919     <Member MemberName="EditMode">
920       <MemberSignature Language="C#" Value="public bool EditMode { get; }" />
921       <MemberType>Property</MemberType>
922       <Attributes>
923         <Attribute>
924           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
925         </Attribute>
926         <Attribute>
927           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
928         </Attribute>
929         <Attribute>
930           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
931         </Attribute>
932       </Attributes>
933       <ReturnValue>
934         <ReturnType>System.Boolean</ReturnType>
935       </ReturnValue>
936       <Docs>
937         <value>To be added.</value>
938         <remarks>To be added.</remarks>
939         <summary>
940           <attribution license="cc4" from="Microsoft" modified="false" />
941           <para>Returns a value that indicates whether the hosted control is in edit mode.</para>
942         </summary>
943       </Docs>
944       <AssemblyInfo>
945         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
946         <AssemblyVersion>2.0.0.0</AssemblyVersion>
947       </AssemblyInfo>
948     </Member>
949     <Member MemberName="Enabled">
950       <MemberSignature Language="C#" Value="public virtual bool Enabled { set; get; }" />
951       <MemberType>Property</MemberType>
952       <Attributes>
953         <Attribute>
954           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
955         </Attribute>
956         <Attribute>
957           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
958         </Attribute>
959       </Attributes>
960       <ReturnValue>
961         <ReturnType>System.Boolean</ReturnType>
962       </ReturnValue>
963       <Docs>
964         <value>To be added.</value>
965         <remarks>To be added.</remarks>
966         <summary>
967           <attribution license="cc4" from="Microsoft" modified="false" />
968           <para>This property is not relevant for this class.</para>
969         </summary>
970       </Docs>
971       <AssemblyInfo>
972         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
973         <AssemblyVersion>2.0.0.0</AssemblyVersion>
974       </AssemblyInfo>
975     </Member>
976     <Member MemberName="EnabledChanged">
977       <MemberSignature Language="C#" Value="public event EventHandler EnabledChanged;" />
978       <MemberType>Event</MemberType>
979       <Attributes>
980         <Attribute>
981           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
982         </Attribute>
983         <Attribute>
984           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
985         </Attribute>
986       </Attributes>
987       <ReturnValue>
988         <ReturnType>System.EventHandler</ReturnType>
989       </ReturnValue>
990       <Docs>
991         <remarks>
992           <attribution license="cc4" from="Microsoft" modified="false" />
993           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.EnabledChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
994         </remarks>
995         <summary>
996           <attribution license="cc4" from="Microsoft" modified="false" />
997           <para>The <see cref="E:System.Windows.Forms.AxHost.EnabledChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
998         </summary>
999       </Docs>
1000       <AssemblyInfo>
1001         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1002         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1003       </AssemblyInfo>
1004     </Member>
1005     <Member MemberName="EndInit">
1006       <MemberSignature Language="C#" Value="public void EndInit ();" />
1007       <MemberType>Method</MemberType>
1008       <ReturnValue>
1009         <ReturnType>System.Void</ReturnType>
1010       </ReturnValue>
1011       <Parameters />
1012       <Docs>
1013         <remarks>
1014           <attribution license="cc4" from="Microsoft" modified="false" />
1015           <para>Design environments typically use this method to finish the initialization of a component that is used on a form or used by another component. The <see cref="M:System.Windows.Forms.AxHost.EndInit" /> method ends the initialization. Using the <see cref="M:System.Windows.Forms.AxHost.BeginInit" /> and <see cref="M:System.Windows.Forms.AxHost.EndInit" /> methods prevents the control from being used before it is fully initialized. The initialization occurs at run time.</para>
1016         </remarks>
1017         <summary>
1018           <attribution license="cc4" from="Microsoft" modified="false" />
1019           <para>Ends the initialization of an ActiveX control.</para>
1020         </summary>
1021       </Docs>
1022       <AssemblyInfo>
1023         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1024         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1025       </AssemblyInfo>
1026       <Attributes>
1027         <Attribute>
1028           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1029         </Attribute>
1030       </Attributes>
1031     </Member>
1032     <Member MemberName="Font">
1033       <MemberSignature Language="C#" Value="public override System.Drawing.Font Font { set; get; }" />
1034       <MemberType>Property</MemberType>
1035       <Attributes>
1036         <Attribute>
1037           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1038         </Attribute>
1039         <Attribute>
1040           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1041         </Attribute>
1042       </Attributes>
1043       <ReturnValue>
1044         <ReturnType>System.Drawing.Font</ReturnType>
1045       </ReturnValue>
1046       <Docs>
1047         <value>To be added.</value>
1048         <remarks>To be added.</remarks>
1049         <summary>
1050           <attribution license="cc4" from="Microsoft" modified="false" />
1051           <para>This property is not relevant for this class.</para>
1052         </summary>
1053       </Docs>
1054       <AssemblyInfo>
1055         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1056         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1057       </AssemblyInfo>
1058     </Member>
1059     <Member MemberName="FontChanged">
1060       <MemberSignature Language="C#" Value="public event EventHandler FontChanged;" />
1061       <MemberType>Event</MemberType>
1062       <Attributes>
1063         <Attribute>
1064           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1065         </Attribute>
1066         <Attribute>
1067           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1068         </Attribute>
1069       </Attributes>
1070       <ReturnValue>
1071         <ReturnType>System.EventHandler</ReturnType>
1072       </ReturnValue>
1073       <Docs>
1074         <remarks>
1075           <attribution license="cc4" from="Microsoft" modified="false" />
1076           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.FontChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1077         </remarks>
1078         <summary>
1079           <attribution license="cc4" from="Microsoft" modified="false" />
1080           <para>The <see cref="E:System.Windows.Forms.AxHost.FontChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1081         </summary>
1082       </Docs>
1083       <AssemblyInfo>
1084         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1085         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1086       </AssemblyInfo>
1087     </Member>
1088     <Member MemberName="ForeColor">
1089       <MemberSignature Language="C#" Value="public override System.Drawing.Color ForeColor { set; get; }" />
1090       <MemberType>Property</MemberType>
1091       <Attributes>
1092         <Attribute>
1093           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1094         </Attribute>
1095         <Attribute>
1096           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1097         </Attribute>
1098       </Attributes>
1099       <ReturnValue>
1100         <ReturnType>System.Drawing.Color</ReturnType>
1101       </ReturnValue>
1102       <Docs>
1103         <value>To be added.</value>
1104         <remarks>To be added.</remarks>
1105         <summary>
1106           <attribution license="cc4" from="Microsoft" modified="false" />
1107           <para>This property is not relevant for this class.</para>
1108         </summary>
1109       </Docs>
1110       <AssemblyInfo>
1111         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1112         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1113       </AssemblyInfo>
1114     </Member>
1115     <Member MemberName="ForeColorChanged">
1116       <MemberSignature Language="C#" Value="public event EventHandler ForeColorChanged;" />
1117       <MemberType>Event</MemberType>
1118       <Attributes>
1119         <Attribute>
1120           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1121         </Attribute>
1122         <Attribute>
1123           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1124         </Attribute>
1125       </Attributes>
1126       <ReturnValue>
1127         <ReturnType>System.EventHandler</ReturnType>
1128       </ReturnValue>
1129       <Docs>
1130         <remarks>
1131           <attribution license="cc4" from="Microsoft" modified="false" />
1132           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.ForeColorChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1133         </remarks>
1134         <summary>
1135           <attribution license="cc4" from="Microsoft" modified="false" />
1136           <para>The <see cref="E:System.Windows.Forms.AxHost.ForeColorChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1137         </summary>
1138       </Docs>
1139       <AssemblyInfo>
1140         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1141         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1142       </AssemblyInfo>
1143     </Member>
1144     <Member MemberName="GetColorFromOleColor">
1145       <MemberSignature Language="C#" Value="protected static System.Drawing.Color GetColorFromOleColor (uint color);" />
1146       <MemberType>Method</MemberType>
1147       <ReturnValue>
1148         <ReturnType>System.Drawing.Color</ReturnType>
1149       </ReturnValue>
1150       <Parameters>
1151         <Parameter Name="color" Type="System.UInt32" />
1152       </Parameters>
1153       <Docs>
1154         <remarks>To be added.</remarks>
1155         <summary>
1156           <attribution license="cc4" from="Microsoft" modified="false" />
1157           <para>Returns a <see cref="T:System.Drawing.Color" /> structure that corresponds to the specified OLE color value.</para>
1158         </summary>
1159         <returns>
1160           <attribution license="cc4" from="Microsoft" modified="false" />
1161           <para>The <see cref="T:System.Drawing.Color" /> structure that represents the translated OLE color value.</para>
1162         </returns>
1163         <param name="color">
1164           <attribution license="cc4" from="Microsoft" modified="false" />The OLE color value to translate.</param>
1165       </Docs>
1166       <AssemblyInfo>
1167         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1168         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1169       </AssemblyInfo>
1170       <Attributes>
1171         <Attribute>
1172           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1173         </Attribute>
1174         <Attribute>
1175           <AttributeName>System.CLSCompliant(false)</AttributeName>
1176         </Attribute>
1177       </Attributes>
1178     </Member>
1179     <Member MemberName="GetFontFromIFont">
1180       <MemberSignature Language="C#" Value="protected static System.Drawing.Font GetFontFromIFont (object font);" />
1181       <MemberType>Method</MemberType>
1182       <ReturnValue>
1183         <ReturnType>System.Drawing.Font</ReturnType>
1184       </ReturnValue>
1185       <Parameters>
1186         <Parameter Name="font" Type="System.Object" />
1187       </Parameters>
1188       <Docs>
1189         <remarks>To be added.</remarks>
1190         <summary>
1191           <attribution license="cc4" from="Microsoft" modified="false" />
1192           <para>Returns a <see cref="T:System.Drawing.Font" /> created from the specified OLE <see cref="http://go.microsoft.com/fwlink/?LinkId=166075">IFont</see> object.</para>
1193         </summary>
1194         <returns>
1195           <attribution license="cc4" from="Microsoft" modified="false" />
1196           <para>The <see cref="T:System.Drawing.Font" /> created from the specified <see cref="http://go.microsoft.com/fwlink/?LinkId=166075">IFont</see>, <see cref="P:System.Windows.Forms.Control.DefaultFont" /> if the font could not be created, or null if <paramref name="font" /> is null.</para>
1197         </returns>
1198         <param name="font">
1199           <attribution license="cc4" from="Microsoft" modified="false" />The IFont to create a <see cref="T:System.Drawing.Font" /> from.</param>
1200       </Docs>
1201       <AssemblyInfo>
1202         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1203         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1204       </AssemblyInfo>
1205       <Attributes>
1206         <Attribute>
1207           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1208         </Attribute>
1209       </Attributes>
1210     </Member>
1211     <Member MemberName="GetFontFromIFontDisp">
1212       <MemberSignature Language="C#" Value="protected static System.Drawing.Font GetFontFromIFontDisp (object font);" />
1213       <MemberType>Method</MemberType>
1214       <ReturnValue>
1215         <ReturnType>System.Drawing.Font</ReturnType>
1216       </ReturnValue>
1217       <Parameters>
1218         <Parameter Name="font" Type="System.Object" />
1219       </Parameters>
1220       <Docs>
1221         <remarks>To be added.</remarks>
1222         <summary>
1223           <attribution license="cc4" from="Microsoft" modified="false" />
1224           <para>Returns a <see cref="T:System.Drawing.Font" /> created from the specified OLE <see cref="http://go.microsoft.com/fwlink/?LinkId=166073">IFontDisp</see> object.</para>
1225         </summary>
1226         <returns>
1227           <attribution license="cc4" from="Microsoft" modified="false" />
1228           <para>The <see cref="T:System.Drawing.Font" /> created from the specified <see cref="http://go.microsoft.com/fwlink/?LinkId=166073">IFontDisp</see>, <see cref="P:System.Windows.Forms.Control.DefaultFont" /> if the font could not be created, or null if <paramref name="font" /> is null.</para>
1229         </returns>
1230         <param name="font">
1231           <attribution license="cc4" from="Microsoft" modified="false" />The IFontDisp to create a <see cref="T:System.Drawing.Font" /> from.</param>
1232       </Docs>
1233       <AssemblyInfo>
1234         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1235         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1236       </AssemblyInfo>
1237       <Attributes>
1238         <Attribute>
1239           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1240         </Attribute>
1241       </Attributes>
1242     </Member>
1243     <Member MemberName="GetIFontDispFromFont">
1244       <MemberSignature Language="C#" Value="protected static object GetIFontDispFromFont (System.Drawing.Font font);" />
1245       <MemberType>Method</MemberType>
1246       <ReturnValue>
1247         <ReturnType>System.Object</ReturnType>
1248       </ReturnValue>
1249       <Parameters>
1250         <Parameter Name="font" Type="System.Drawing.Font" />
1251       </Parameters>
1252       <Docs>
1253         <remarks>To be added.</remarks>
1254         <summary>
1255           <attribution license="cc4" from="Microsoft" modified="false" />
1256           <para>Returns an OLE <see cref="http://go.microsoft.com/fwlink/?LinkId=166073">IFontDisp</see> object created from the specified <see cref="T:System.Drawing.Font" /> object.</para>
1257         </summary>
1258         <returns>
1259           <attribution license="cc4" from="Microsoft" modified="false" />
1260           <para>The <see cref="http://go.microsoft.com/fwlink/?LinkId=166073">IFontDisp</see> object created from the specified font or null if <paramref name="font" /> is null.</para>
1261         </returns>
1262         <param name="font">
1263           <attribution license="cc4" from="Microsoft" modified="false" />The font to create an IFontDisp object from.</param>
1264       </Docs>
1265       <AssemblyInfo>
1266         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1267         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1268       </AssemblyInfo>
1269       <Attributes>
1270         <Attribute>
1271           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1272         </Attribute>
1273       </Attributes>
1274     </Member>
1275     <Member MemberName="GetIFontFromFont">
1276       <MemberSignature Language="C#" Value="protected static object GetIFontFromFont (System.Drawing.Font font);" />
1277       <MemberType>Method</MemberType>
1278       <ReturnValue>
1279         <ReturnType>System.Object</ReturnType>
1280       </ReturnValue>
1281       <Parameters>
1282         <Parameter Name="font" Type="System.Drawing.Font" />
1283       </Parameters>
1284       <Docs>
1285         <remarks>To be added.</remarks>
1286         <summary>
1287           <attribution license="cc4" from="Microsoft" modified="false" />
1288           <para>Returns an OLE <see cref="http://go.microsoft.com/fwlink/?LinkId=166075">IFont</see> object created from the specified <see cref="T:System.Drawing.Font" /> object.</para>
1289         </summary>
1290         <returns>
1291           <attribution license="cc4" from="Microsoft" modified="false" />
1292           <para>The <see cref="http://go.microsoft.com/fwlink/?LinkId=166075">IFont</see> object created from the specified font, or null if <paramref name="font" /> is null or the <see cref="http://go.microsoft.com/fwlink/?LinkId=166075">IFont</see> could not be created.</para>
1293         </returns>
1294         <param name="font">
1295           <attribution license="cc4" from="Microsoft" modified="false" />The font to create an IFont object from.</param>
1296       </Docs>
1297       <AssemblyInfo>
1298         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1299         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1300       </AssemblyInfo>
1301       <Attributes>
1302         <Attribute>
1303           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1304         </Attribute>
1305       </Attributes>
1306     </Member>
1307     <Member MemberName="GetIPictureDispFromPicture">
1308       <MemberSignature Language="C#" Value="protected static object GetIPictureDispFromPicture (System.Drawing.Image image);" />
1309       <MemberType>Method</MemberType>
1310       <ReturnValue>
1311         <ReturnType>System.Object</ReturnType>
1312       </ReturnValue>
1313       <Parameters>
1314         <Parameter Name="image" Type="System.Drawing.Image" />
1315       </Parameters>
1316       <Docs>
1317         <remarks>To be added.</remarks>
1318         <summary>
1319           <attribution license="cc4" from="Microsoft" modified="false" />
1320           <para>Returns an OLE IPictureDisp object corresponding to the specified <see cref="T:System.Drawing.Image" />.</para>
1321         </summary>
1322         <returns>
1323           <attribution license="cc4" from="Microsoft" modified="false" />
1324           <para>An <see cref="T:System.Object" /> representing the OLE IPictureDisp object.</para>
1325         </returns>
1326         <param name="image">
1327           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Image" /> to convert.</param>
1328       </Docs>
1329       <AssemblyInfo>
1330         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1331         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1332       </AssemblyInfo>
1333       <Attributes>
1334         <Attribute>
1335           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1336         </Attribute>
1337       </Attributes>
1338     </Member>
1339     <Member MemberName="GetIPictureFromCursor">
1340       <MemberSignature Language="C#" Value="protected static object GetIPictureFromCursor (System.Windows.Forms.Cursor cursor);" />
1341       <MemberType>Method</MemberType>
1342       <ReturnValue>
1343         <ReturnType>System.Object</ReturnType>
1344       </ReturnValue>
1345       <Parameters>
1346         <Parameter Name="cursor" Type="System.Windows.Forms.Cursor" />
1347       </Parameters>
1348       <Docs>
1349         <remarks>To be added.</remarks>
1350         <summary>
1351           <attribution license="cc4" from="Microsoft" modified="false" />
1352           <para>Returns an OLE IPicture object corresponding to the specified <see cref="T:System.Windows.Forms.Cursor" />.</para>
1353         </summary>
1354         <returns>
1355           <attribution license="cc4" from="Microsoft" modified="false" />
1356           <para>An <see cref="T:System.Object" /> representing the OLE IPicture object.</para>
1357         </returns>
1358         <param name="cursor">
1359           <attribution license="cc4" from="Microsoft" modified="false" />
1360           <see cref="T:System.Windows.Forms.Cursor" />
1361         </param>
1362       </Docs>
1363       <AssemblyInfo>
1364         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1365         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1366       </AssemblyInfo>
1367       <Attributes>
1368         <Attribute>
1369           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1370         </Attribute>
1371       </Attributes>
1372     </Member>
1373     <Member MemberName="GetIPictureFromPicture">
1374       <MemberSignature Language="C#" Value="protected static object GetIPictureFromPicture (System.Drawing.Image image);" />
1375       <MemberType>Method</MemberType>
1376       <ReturnValue>
1377         <ReturnType>System.Object</ReturnType>
1378       </ReturnValue>
1379       <Parameters>
1380         <Parameter Name="image" Type="System.Drawing.Image" />
1381       </Parameters>
1382       <Docs>
1383         <remarks>To be added.</remarks>
1384         <summary>
1385           <attribution license="cc4" from="Microsoft" modified="false" />
1386           <para>Returns an OLE IPicture object corresponding to the specified <see cref="T:System.Drawing.Image" />.</para>
1387         </summary>
1388         <returns>
1389           <attribution license="cc4" from="Microsoft" modified="false" />
1390           <para>An <see cref="T:System.Object" /> representing the OLE IPicture object.</para>
1391         </returns>
1392         <param name="image">
1393           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Image" /> to convert.</param>
1394       </Docs>
1395       <AssemblyInfo>
1396         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1397         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1398       </AssemblyInfo>
1399       <Attributes>
1400         <Attribute>
1401           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1402         </Attribute>
1403       </Attributes>
1404     </Member>
1405     <Member MemberName="GetOADateFromTime">
1406       <MemberSignature Language="C#" Value="protected static double GetOADateFromTime (DateTime time);" />
1407       <MemberType>Method</MemberType>
1408       <ReturnValue>
1409         <ReturnType>System.Double</ReturnType>
1410       </ReturnValue>
1411       <Parameters>
1412         <Parameter Name="time" Type="System.DateTime" />
1413       </Parameters>
1414       <Docs>
1415         <remarks>
1416           <attribution license="cc4" from="Microsoft" modified="false" />
1417           <para>An OLE Automation date is implemented as a floating-point number whose value is the number of days from midnight, 30 December 1899. For example, midnight, 31 December 1899 is represented by 1.0; 6 A.M., 1 January 1900 is represented by 2.25; midnight, 29 December 1899 is represented by -1.0; and 6 A.M., 29 December 1899 is represented by -1.25.</para>
1418           <para>The base OLE Automation Date is midnight, 30 December 1899. The maximum OLE Automation Date is the same as <see cref="F:System.DateTime.MaxValue" />, the last moment of 31 December 9999.</para>
1419           <para>For more information about OLE Automation, see the <see cref="http://go.microsoft.com/fwlink/?linkid=37118">MSDN Library</see>.</para>
1420         </remarks>
1421         <summary>
1422           <attribution license="cc4" from="Microsoft" modified="false" />
1423           <para>Returns an OLE Automation date that corresponds to the specified <see cref="T:System.DateTime" /> structure. </para>
1424         </summary>
1425         <returns>
1426           <attribution license="cc4" from="Microsoft" modified="false" />
1427           <para>A double-precision floating-point number that contains an OLE Automation date equivalent to specified <paramref name="time" /> value.</para>
1428         </returns>
1429         <param name="time">
1430           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.DateTime" /> structure to translate.</param>
1431       </Docs>
1432       <AssemblyInfo>
1433         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1434         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1435       </AssemblyInfo>
1436       <Attributes>
1437         <Attribute>
1438           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1439         </Attribute>
1440       </Attributes>
1441     </Member>
1442     <Member MemberName="GetOcx">
1443       <MemberSignature Language="C#" Value="public object GetOcx ();" />
1444       <MemberType>Method</MemberType>
1445       <ReturnValue>
1446         <ReturnType>System.Object</ReturnType>
1447       </ReturnValue>
1448       <Parameters />
1449       <Docs>
1450         <remarks>To be added.</remarks>
1451         <summary>
1452           <attribution license="cc4" from="Microsoft" modified="false" />
1453           <para>Retrieves a reference to the underlying ActiveX control.</para>
1454         </summary>
1455         <returns>
1456           <attribution license="cc4" from="Microsoft" modified="false" />
1457           <para>An object that represents the ActiveX control.</para>
1458         </returns>
1459       </Docs>
1460       <AssemblyInfo>
1461         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1462         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1463       </AssemblyInfo>
1464       <Attributes>
1465         <Attribute>
1466           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1467         </Attribute>
1468       </Attributes>
1469     </Member>
1470     <Member MemberName="GetOleColorFromColor">
1471       <MemberSignature Language="C#" Value="protected static uint GetOleColorFromColor (System.Drawing.Color color);" />
1472       <MemberType>Method</MemberType>
1473       <ReturnValue>
1474         <ReturnType>System.UInt32</ReturnType>
1475       </ReturnValue>
1476       <Parameters>
1477         <Parameter Name="color" Type="System.Drawing.Color" />
1478       </Parameters>
1479       <Docs>
1480         <remarks>To be added.</remarks>
1481         <summary>
1482           <attribution license="cc4" from="Microsoft" modified="false" />
1483           <para>Returns an OLE color value that corresponds to the specified <see cref="T:System.Drawing.Color" /> structure.</para>
1484         </summary>
1485         <returns>
1486           <attribution license="cc4" from="Microsoft" modified="false" />
1487           <para>The OLE color value that represents the translated <see cref="T:System.Drawing.Color" /> structure.</para>
1488         </returns>
1489         <param name="color">
1490           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Color" /> structure to translate.</param>
1491       </Docs>
1492       <AssemblyInfo>
1493         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1494         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1495       </AssemblyInfo>
1496       <Attributes>
1497         <Attribute>
1498           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1499         </Attribute>
1500         <Attribute>
1501           <AttributeName>System.CLSCompliant(false)</AttributeName>
1502         </Attribute>
1503       </Attributes>
1504     </Member>
1505     <Member MemberName="GetPictureFromIPicture">
1506       <MemberSignature Language="C#" Value="protected static System.Drawing.Image GetPictureFromIPicture (object picture);" />
1507       <MemberType>Method</MemberType>
1508       <ReturnValue>
1509         <ReturnType>System.Drawing.Image</ReturnType>
1510       </ReturnValue>
1511       <Parameters>
1512         <Parameter Name="picture" Type="System.Object" />
1513       </Parameters>
1514       <Docs>
1515         <remarks>
1516           <attribution license="cc4" from="Microsoft" modified="false" />
1517           <para>You can use this method to convert IPictureDisp objects in addition to IPicture objects. This works because the IPictureDisp OLE interface is a subset of the IPicture interface. Converting IPictureDisp objects with this method is necessary because the <see cref="M:System.Windows.Forms.AxHost.GetPictureFromIPictureDisp(System.Object)" /> does not work correctly at this time.</para>
1518         </remarks>
1519         <summary>
1520           <attribution license="cc4" from="Microsoft" modified="false" />
1521           <para>Returns an <see cref="T:System.Drawing.Image" /> corresponding to the specified OLE IPicture object.</para>
1522         </summary>
1523         <returns>
1524           <attribution license="cc4" from="Microsoft" modified="false" />
1525           <para>An <see cref="T:System.Drawing.Image" /> representing the IPicture. </para>
1526         </returns>
1527         <param name="picture">
1528           <attribution license="cc4" from="Microsoft" modified="false" />The IPicture to convert.</param>
1529       </Docs>
1530       <AssemblyInfo>
1531         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1532         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1533       </AssemblyInfo>
1534       <Attributes>
1535         <Attribute>
1536           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1537         </Attribute>
1538       </Attributes>
1539     </Member>
1540     <Member MemberName="GetPictureFromIPictureDisp">
1541       <MemberSignature Language="C#" Value="protected static System.Drawing.Image GetPictureFromIPictureDisp (object picture);" />
1542       <MemberType>Method</MemberType>
1543       <ReturnValue>
1544         <ReturnType>System.Drawing.Image</ReturnType>
1545       </ReturnValue>
1546       <Parameters>
1547         <Parameter Name="picture" Type="System.Object" />
1548       </Parameters>
1549       <Docs>
1550         <remarks>
1551           <attribution license="cc4" from="Microsoft" modified="false" />
1552           <para>This method does not work correctly. You can use the <see cref="M:System.Windows.Forms.AxHost.GetPictureFromIPicture(System.Object)" /> method to convert an IPictureDisp object into an <see cref="T:System.Drawing.Image" />, however, because the IPictureDisp OLE interface is a subset of the IPicture interface. </para>
1553         </remarks>
1554         <summary>
1555           <attribution license="cc4" from="Microsoft" modified="false" />
1556           <para>Returns an <see cref="T:System.Drawing.Image" /> corresponding to the specified OLE IPictureDisp object.</para>
1557         </summary>
1558         <returns>
1559           <attribution license="cc4" from="Microsoft" modified="false" />
1560           <para>An <see cref="T:System.Drawing.Image" /> representing the IPictureDisp. </para>
1561         </returns>
1562         <param name="picture">
1563           <attribution license="cc4" from="Microsoft" modified="false" />The IPictureDisp to convert.</param>
1564       </Docs>
1565       <AssemblyInfo>
1566         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1567         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1568       </AssemblyInfo>
1569       <Attributes>
1570         <Attribute>
1571           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1572         </Attribute>
1573       </Attributes>
1574     </Member>
1575     <Member MemberName="GetScaledBounds">
1576       <MemberSignature Language="C#" Value="protected virtual System.Drawing.Rectangle GetScaledBounds (System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified);" />
1577       <MemberType>Method</MemberType>
1578       <AssemblyInfo>
1579         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1580       </AssemblyInfo>
1581       <Attributes>
1582         <Attribute>
1583           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1584         </Attribute>
1585       </Attributes>
1586       <ReturnValue>
1587         <ReturnType>System.Drawing.Rectangle</ReturnType>
1588       </ReturnValue>
1589       <Parameters>
1590         <Parameter Name="bounds" Type="System.Drawing.Rectangle" />
1591         <Parameter Name="factor" Type="System.Drawing.SizeF" />
1592         <Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" />
1593       </Parameters>
1594       <Docs>
1595         <remarks>
1596           <attribution license="cc4" from="Microsoft" modified="false" />
1597           <para>ActiveX controls scale themselves, so this method does not perform any special calculations, ignores the <paramref name="factor" /> and <paramref name="specified" /> values, and returns the <paramref name="bounds" /> value unchanged. </para>
1598         </remarks>
1599         <summary>
1600           <attribution license="cc4" from="Microsoft" modified="false" />
1601           <para>Called by the system to retrieve the current bounds of the ActiveX control.</para>
1602         </summary>
1603         <returns>
1604           <attribution license="cc4" from="Microsoft" modified="false" />
1605           <para>The unmodified <paramref name="bounds" /> value.</para>
1606         </returns>
1607         <param name="bounds">
1608           <attribution license="cc4" from="Microsoft" modified="false" />The original bounds of the ActiveX control.</param>
1609         <param name="factor">
1610           <attribution license="cc4" from="Microsoft" modified="false" />A scaling factor. </param>
1611         <param name="specified">
1612           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.BoundsSpecified" /> value.</param>
1613       </Docs>
1614     </Member>
1615     <Member MemberName="GetTimeFromOADate">
1616       <MemberSignature Language="C#" Value="protected static DateTime GetTimeFromOADate (double date);" />
1617       <MemberType>Method</MemberType>
1618       <ReturnValue>
1619         <ReturnType>System.DateTime</ReturnType>
1620       </ReturnValue>
1621       <Parameters>
1622         <Parameter Name="date" Type="System.Double" />
1623       </Parameters>
1624       <Docs>
1625         <remarks>
1626           <attribution license="cc4" from="Microsoft" modified="false" />
1627           <para>The <paramref name="date" /> parameter is a double-precision floating-point number that represents a date as the number of days before or after the base date, midnight, 30 December 1899. The sign and integral part of <paramref name="date" /> encode the date as a positive or negative day displacement from 30 December 1899, and the absolute value of the fractional part of <paramref name="date" /> encodes the time of day as a fraction of a day displacement from midnight. <paramref name="date" /> must be a value between negative 657435.0 through positive 2958466.0.</para>
1628           <para>Note that because of the way dates are encoded, there are two ways of representing any time of day on 30 December 1899. For example, -0.5 and 0.5 both mean noon on 30 December 1899 because a day displacement of plus or minus zero days from the base date is still the base date, and a half day displacement from midnight is noon.</para>
1629           <para>For more information about OLE Automation, see the <see cref="http://go.microsoft.com/fwlink/?linkid=37118">MSDN Library</see>.</para>
1630         </remarks>
1631         <summary>
1632           <attribution license="cc4" from="Microsoft" modified="false" />
1633           <para>Returns a <see cref="T:System.DateTime" /> structure that corresponds to the specified OLE Automation date.</para>
1634         </summary>
1635         <returns>
1636           <attribution license="cc4" from="Microsoft" modified="false" />
1637           <para>A <see cref="T:System.DateTime" /> that represents the same date and time as <paramref name="date" />.</para>
1638         </returns>
1639         <param name="date">
1640           <attribution license="cc4" from="Microsoft" modified="false" />The OLE Automate date to translate.</param>
1641       </Docs>
1642       <AssemblyInfo>
1643         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1644         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1645       </AssemblyInfo>
1646       <Attributes>
1647         <Attribute>
1648           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1649         </Attribute>
1650       </Attributes>
1651     </Member>
1652     <Member MemberName="GiveFeedback">
1653       <MemberSignature Language="C#" Value="public event System.Windows.Forms.GiveFeedbackEventHandler GiveFeedback;" />
1654       <MemberType>Event</MemberType>
1655       <Attributes>
1656         <Attribute>
1657           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1658         </Attribute>
1659         <Attribute>
1660           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1661         </Attribute>
1662       </Attributes>
1663       <ReturnValue>
1664         <ReturnType>System.Windows.Forms.GiveFeedbackEventHandler</ReturnType>
1665       </ReturnValue>
1666       <Docs>
1667         <remarks>
1668           <attribution license="cc4" from="Microsoft" modified="false" />
1669           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.GiveFeedback" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1670         </remarks>
1671         <summary>
1672           <attribution license="cc4" from="Microsoft" modified="false" />
1673           <para>The <see cref="E:System.Windows.Forms.AxHost.GiveFeedback" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1674         </summary>
1675       </Docs>
1676       <AssemblyInfo>
1677         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1678         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1679       </AssemblyInfo>
1680     </Member>
1681     <Member MemberName="HasAboutBox">
1682       <MemberSignature Language="C#" Value="public bool HasAboutBox { get; }" />
1683       <MemberType>Property</MemberType>
1684       <Attributes>
1685         <Attribute>
1686           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1687         </Attribute>
1688         <Attribute>
1689           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1690         </Attribute>
1691         <Attribute>
1692           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1693         </Attribute>
1694       </Attributes>
1695       <ReturnValue>
1696         <ReturnType>System.Boolean</ReturnType>
1697       </ReturnValue>
1698       <Docs>
1699         <value>To be added.</value>
1700         <remarks>
1701           <attribution license="cc4" from="Microsoft" modified="false" />
1702           <para>The <ui>About</ui> dialog box typically displays version and copyright information about the ActiveX control.</para>
1703         </remarks>
1704         <summary>
1705           <attribution license="cc4" from="Microsoft" modified="false" />
1706           <para>Gets a value indicating whether the ActiveX control has an <ui>About</ui> dialog box.</para>
1707         </summary>
1708       </Docs>
1709       <AssemblyInfo>
1710         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1711         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1712       </AssemblyInfo>
1713     </Member>
1714     <Member MemberName="HasPropertyPages">
1715       <MemberSignature Language="C#" Value="public bool HasPropertyPages ();" />
1716       <MemberType>Method</MemberType>
1717       <ReturnValue>
1718         <ReturnType>System.Boolean</ReturnType>
1719       </ReturnValue>
1720       <Parameters />
1721       <Docs>
1722         <remarks>
1723           <attribution license="cc4" from="Microsoft" modified="false" />
1724           <para>Property pages allow an ActiveX control user to view and change ActiveX control properties. These properties are accessed by invoking a control properties dialog box, which contains one or more property pages that provide a customized, graphical interface for viewing and editing the control properties.</para>
1725         </remarks>
1726         <summary>
1727           <attribution license="cc4" from="Microsoft" modified="false" />
1728           <para>Determines if the ActiveX control has a property page.</para>
1729         </summary>
1730         <returns>
1731           <attribution license="cc4" from="Microsoft" modified="false" />
1732           <para>true if the ActiveX control has a property page; otherwise, false.</para>
1733         </returns>
1734       </Docs>
1735       <AssemblyInfo>
1736         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1737         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1738       </AssemblyInfo>
1739     </Member>
1740     <Member MemberName="HelpRequested">
1741       <MemberSignature Language="C#" Value="public event System.Windows.Forms.HelpEventHandler HelpRequested;" />
1742       <MemberType>Event</MemberType>
1743       <Attributes>
1744         <Attribute>
1745           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1746         </Attribute>
1747         <Attribute>
1748           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1749         </Attribute>
1750       </Attributes>
1751       <ReturnValue>
1752         <ReturnType>System.Windows.Forms.HelpEventHandler</ReturnType>
1753       </ReturnValue>
1754       <Docs>
1755         <remarks>
1756           <attribution license="cc4" from="Microsoft" modified="false" />
1757           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.HelpRequested" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1758         </remarks>
1759         <summary>
1760           <attribution license="cc4" from="Microsoft" modified="false" />
1761           <para>The <see cref="E:System.Windows.Forms.AxHost.HelpRequested" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1762         </summary>
1763       </Docs>
1764       <AssemblyInfo>
1765         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1766         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1767       </AssemblyInfo>
1768     </Member>
1769     <Member MemberName="ImeMode">
1770       <MemberSignature Language="C#" Value="public System.Windows.Forms.ImeMode ImeMode { set; get; }" />
1771       <MemberType>Property</MemberType>
1772       <AssemblyInfo>
1773         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1774         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1775       </AssemblyInfo>
1776       <Attributes>
1777         <Attribute>
1778           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1779         </Attribute>
1780         <Attribute>
1781           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1782         </Attribute>
1783         <Attribute>
1784           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1785         </Attribute>
1786       </Attributes>
1787       <ReturnValue>
1788         <ReturnType>System.Windows.Forms.ImeMode</ReturnType>
1789       </ReturnValue>
1790       <Docs>
1791         <value>To be added.</value>
1792         <remarks>To be added.</remarks>
1793         <summary>
1794           <attribution license="cc4" from="Microsoft" modified="false" />
1795           <para>This property is not relevant for this class.</para>
1796         </summary>
1797       </Docs>
1798     </Member>
1799     <Member MemberName="ImeModeChanged">
1800       <MemberSignature Language="C#" Value="public event EventHandler ImeModeChanged;" />
1801       <MemberType>Event</MemberType>
1802       <Attributes>
1803         <Attribute>
1804           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1805         </Attribute>
1806         <Attribute>
1807           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1808         </Attribute>
1809       </Attributes>
1810       <ReturnValue>
1811         <ReturnType>System.EventHandler</ReturnType>
1812       </ReturnValue>
1813       <Docs>
1814         <remarks>
1815           <attribution license="cc4" from="Microsoft" modified="false" />
1816           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.ImeModeChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1817         </remarks>
1818         <summary>
1819           <attribution license="cc4" from="Microsoft" modified="false" />
1820           <para>The <see cref="E:System.Windows.Forms.AxHost.ImeModeChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1821         </summary>
1822       </Docs>
1823       <AssemblyInfo>
1824         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1825         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1826       </AssemblyInfo>
1827     </Member>
1828     <Member MemberName="InvokeEditMode">
1829       <MemberSignature Language="C#" Value="public void InvokeEditMode ();" />
1830       <MemberType>Method</MemberType>
1831       <ReturnValue>
1832         <ReturnType>System.Void</ReturnType>
1833       </ReturnValue>
1834       <Parameters />
1835       <Docs>
1836         <remarks>To be added.</remarks>
1837         <summary>
1838           <attribution license="cc4" from="Microsoft" modified="false" />
1839           <para>Attempts to activate the editing mode of the hosted control. </para>
1840         </summary>
1841       </Docs>
1842       <AssemblyInfo>
1843         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1844         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1845       </AssemblyInfo>
1846       <Attributes>
1847         <Attribute>
1848           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
1849         </Attribute>
1850       </Attributes>
1851     </Member>
1852     <Member MemberName="IsInputChar">
1853       <MemberSignature Language="C#" Value="protected override bool IsInputChar (char charCode);" />
1854       <MemberType>Method</MemberType>
1855       <ReturnValue>
1856         <ReturnType>System.Boolean</ReturnType>
1857       </ReturnValue>
1858       <Parameters>
1859         <Parameter Name="charCode" Type="System.Char" />
1860       </Parameters>
1861       <Docs>
1862         <remarks>
1863           <attribution license="cc4" from="Microsoft" modified="false" />
1864           <para>The <see cref="M:System.Windows.Forms.AxHost.IsInputChar(System.Char)" /> method is called during window message preprocessing to determine whether the given input character should be preprocessed or sent directly to the ActiveX control. The preprocessing of a character includes checking whether the character is a mnemonic of another control.</para>
1865           <para>As implemented in the <see cref="T:System.Windows.Forms.AxHost" /> class, the <see cref="M:System.Windows.Forms.AxHost.IsInputChar(System.Char)" /> method always returns true, so the specified character is sent directly to the ActiveX control.</para>
1866         </remarks>
1867         <summary>
1868           <attribution license="cc4" from="Microsoft" modified="false" />
1869           <para>Determines if a character is an input character that the ActiveX control recognizes.</para>
1870         </summary>
1871         <returns>
1872           <attribution license="cc4" from="Microsoft" modified="false" />
1873           <para>true if the character should be sent directly to the ActiveX control and not preprocessed; otherwise, false.</para>
1874         </returns>
1875         <param name="charCode">
1876           <attribution license="cc4" from="Microsoft" modified="false" />The character to test. </param>
1877       </Docs>
1878       <AssemblyInfo>
1879         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1880         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1881       </AssemblyInfo>
1882     </Member>
1883     <Member MemberName="KeyDown">
1884       <MemberSignature Language="C#" Value="public event System.Windows.Forms.KeyEventHandler KeyDown;" />
1885       <MemberType>Event</MemberType>
1886       <Attributes>
1887         <Attribute>
1888           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1889         </Attribute>
1890         <Attribute>
1891           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1892         </Attribute>
1893       </Attributes>
1894       <ReturnValue>
1895         <ReturnType>System.Windows.Forms.KeyEventHandler</ReturnType>
1896       </ReturnValue>
1897       <Docs>
1898         <remarks>
1899           <attribution license="cc4" from="Microsoft" modified="false" />
1900           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.KeyDown" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1901         </remarks>
1902         <summary>
1903           <attribution license="cc4" from="Microsoft" modified="false" />
1904           <para>The <see cref="E:System.Windows.Forms.AxHost.KeyDown" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1905         </summary>
1906       </Docs>
1907       <AssemblyInfo>
1908         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1909         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1910       </AssemblyInfo>
1911     </Member>
1912     <Member MemberName="KeyPress">
1913       <MemberSignature Language="C#" Value="public event System.Windows.Forms.KeyPressEventHandler KeyPress;" />
1914       <MemberType>Event</MemberType>
1915       <Attributes>
1916         <Attribute>
1917           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1918         </Attribute>
1919         <Attribute>
1920           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1921         </Attribute>
1922       </Attributes>
1923       <ReturnValue>
1924         <ReturnType>System.Windows.Forms.KeyPressEventHandler</ReturnType>
1925       </ReturnValue>
1926       <Docs>
1927         <remarks>
1928           <attribution license="cc4" from="Microsoft" modified="false" />
1929           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.KeyPress" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1930         </remarks>
1931         <summary>
1932           <attribution license="cc4" from="Microsoft" modified="false" />
1933           <para>The <see cref="E:System.Windows.Forms.AxHost.KeyPress" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1934         </summary>
1935       </Docs>
1936       <AssemblyInfo>
1937         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1938         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1939       </AssemblyInfo>
1940     </Member>
1941     <Member MemberName="KeyUp">
1942       <MemberSignature Language="C#" Value="public event System.Windows.Forms.KeyEventHandler KeyUp;" />
1943       <MemberType>Event</MemberType>
1944       <Attributes>
1945         <Attribute>
1946           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1947         </Attribute>
1948         <Attribute>
1949           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1950         </Attribute>
1951       </Attributes>
1952       <ReturnValue>
1953         <ReturnType>System.Windows.Forms.KeyEventHandler</ReturnType>
1954       </ReturnValue>
1955       <Docs>
1956         <remarks>
1957           <attribution license="cc4" from="Microsoft" modified="false" />
1958           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.KeyUp" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1959         </remarks>
1960         <summary>
1961           <attribution license="cc4" from="Microsoft" modified="false" />
1962           <para>The <see cref="E:System.Windows.Forms.AxHost.KeyUp" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1963         </summary>
1964       </Docs>
1965       <AssemblyInfo>
1966         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1967         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1968       </AssemblyInfo>
1969     </Member>
1970     <Member MemberName="Layout">
1971       <MemberSignature Language="C#" Value="public event System.Windows.Forms.LayoutEventHandler Layout;" />
1972       <MemberType>Event</MemberType>
1973       <Attributes>
1974         <Attribute>
1975           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1976         </Attribute>
1977         <Attribute>
1978           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1979         </Attribute>
1980       </Attributes>
1981       <ReturnValue>
1982         <ReturnType>System.Windows.Forms.LayoutEventHandler</ReturnType>
1983       </ReturnValue>
1984       <Docs>
1985         <remarks>
1986           <attribution license="cc4" from="Microsoft" modified="false" />
1987           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.Layout" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
1988         </remarks>
1989         <summary>
1990           <attribution license="cc4" from="Microsoft" modified="false" />
1991           <para>The <see cref="E:System.Windows.Forms.AxHost.Layout" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
1992         </summary>
1993       </Docs>
1994       <AssemblyInfo>
1995         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1996         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1997       </AssemblyInfo>
1998     </Member>
1999     <Member MemberName="MakeDirty">
2000       <MemberSignature Language="C#" Value="public void MakeDirty ();" />
2001       <MemberType>Method</MemberType>
2002       <ReturnValue>
2003         <ReturnType>System.Void</ReturnType>
2004       </ReturnValue>
2005       <Parameters />
2006       <Docs>
2007         <remarks>To be added.</remarks>
2008         <summary>
2009           <attribution license="cc4" from="Microsoft" modified="false" />
2010           <para>Announces to the component change service that the <see cref="T:System.Windows.Forms.AxHost" /> has changed.</para>
2011         </summary>
2012       </Docs>
2013       <AssemblyInfo>
2014         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2015         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2016       </AssemblyInfo>
2017       <Attributes>
2018         <Attribute>
2019           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2020         </Attribute>
2021       </Attributes>
2022     </Member>
2023     <Member MemberName="MouseClick">
2024       <MemberSignature Language="C#" Value="public event EventHandler MouseClick;" />
2025       <MemberType>Event</MemberType>
2026       <AssemblyInfo>
2027         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2028       </AssemblyInfo>
2029       <Attributes>
2030         <Attribute>
2031           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2032         </Attribute>
2033         <Attribute>
2034           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2035         </Attribute>
2036       </Attributes>
2037       <ReturnValue>
2038         <ReturnType>System.EventHandler</ReturnType>
2039       </ReturnValue>
2040       <Docs>
2041         <remarks>To be added.</remarks>
2042         <summary>
2043           <attribution license="cc4" from="Microsoft" modified="false" />
2044           <para>This event is not relevant for this class.</para>
2045         </summary>
2046       </Docs>
2047     </Member>
2048     <Member MemberName="MouseDoubleClick">
2049       <MemberSignature Language="C#" Value="public event EventHandler MouseDoubleClick;" />
2050       <MemberType>Event</MemberType>
2051       <AssemblyInfo>
2052         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2053       </AssemblyInfo>
2054       <Attributes>
2055         <Attribute>
2056           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2057         </Attribute>
2058         <Attribute>
2059           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2060         </Attribute>
2061       </Attributes>
2062       <ReturnValue>
2063         <ReturnType>System.EventHandler</ReturnType>
2064       </ReturnValue>
2065       <Docs>
2066         <remarks>To be added.</remarks>
2067         <summary>
2068           <attribution license="cc4" from="Microsoft" modified="false" />
2069           <para>This event is not relevant for this class.</para>
2070         </summary>
2071       </Docs>
2072     </Member>
2073     <Member MemberName="MouseDown">
2074       <MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseDown;" />
2075       <MemberType>Event</MemberType>
2076       <Attributes>
2077         <Attribute>
2078           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2079         </Attribute>
2080         <Attribute>
2081           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2082         </Attribute>
2083       </Attributes>
2084       <ReturnValue>
2085         <ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType>
2086       </ReturnValue>
2087       <Docs>
2088         <remarks>
2089           <attribution license="cc4" from="Microsoft" modified="false" />
2090           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2091         </remarks>
2092         <summary>
2093           <attribution license="cc4" from="Microsoft" modified="false" />
2094           <para>The <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2095         </summary>
2096       </Docs>
2097       <AssemblyInfo>
2098         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2099         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2100       </AssemblyInfo>
2101     </Member>
2102     <Member MemberName="MouseEnter">
2103       <MemberSignature Language="C#" Value="public event EventHandler MouseEnter;" />
2104       <MemberType>Event</MemberType>
2105       <Attributes>
2106         <Attribute>
2107           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2108         </Attribute>
2109         <Attribute>
2110           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2111         </Attribute>
2112       </Attributes>
2113       <ReturnValue>
2114         <ReturnType>System.EventHandler</ReturnType>
2115       </ReturnValue>
2116       <Docs>
2117         <remarks>
2118           <attribution license="cc4" from="Microsoft" modified="false" />
2119           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.MouseEnter" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2120         </remarks>
2121         <summary>
2122           <attribution license="cc4" from="Microsoft" modified="false" />
2123           <para>The <see cref="E:System.Windows.Forms.AxHost.MouseEnter" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2124         </summary>
2125       </Docs>
2126       <AssemblyInfo>
2127         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2128         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2129       </AssemblyInfo>
2130     </Member>
2131     <Member MemberName="MouseHover">
2132       <MemberSignature Language="C#" Value="public event EventHandler MouseHover;" />
2133       <MemberType>Event</MemberType>
2134       <Attributes>
2135         <Attribute>
2136           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2137         </Attribute>
2138         <Attribute>
2139           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2140         </Attribute>
2141       </Attributes>
2142       <ReturnValue>
2143         <ReturnType>System.EventHandler</ReturnType>
2144       </ReturnValue>
2145       <Docs>
2146         <remarks>
2147           <attribution license="cc4" from="Microsoft" modified="false" />
2148           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.MouseHover" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2149         </remarks>
2150         <summary>
2151           <attribution license="cc4" from="Microsoft" modified="false" />
2152           <para>The <see cref="E:System.Windows.Forms.AxHost.MouseHover" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2153         </summary>
2154       </Docs>
2155       <AssemblyInfo>
2156         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2157         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2158       </AssemblyInfo>
2159     </Member>
2160     <Member MemberName="MouseLeave">
2161       <MemberSignature Language="C#" Value="public event EventHandler MouseLeave;" />
2162       <MemberType>Event</MemberType>
2163       <Attributes>
2164         <Attribute>
2165           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2166         </Attribute>
2167         <Attribute>
2168           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2169         </Attribute>
2170       </Attributes>
2171       <ReturnValue>
2172         <ReturnType>System.EventHandler</ReturnType>
2173       </ReturnValue>
2174       <Docs>
2175         <remarks>
2176           <attribution license="cc4" from="Microsoft" modified="false" />
2177           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.MouseLeave" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2178         </remarks>
2179         <summary>
2180           <attribution license="cc4" from="Microsoft" modified="false" />
2181           <para>The <see cref="E:System.Windows.Forms.AxHost.MouseLeave" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2182         </summary>
2183       </Docs>
2184       <AssemblyInfo>
2185         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2186         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2187       </AssemblyInfo>
2188     </Member>
2189     <Member MemberName="MouseMove">
2190       <MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseMove;" />
2191       <MemberType>Event</MemberType>
2192       <Attributes>
2193         <Attribute>
2194           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2195         </Attribute>
2196         <Attribute>
2197           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2198         </Attribute>
2199       </Attributes>
2200       <ReturnValue>
2201         <ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType>
2202       </ReturnValue>
2203       <Docs>
2204         <remarks>
2205           <attribution license="cc4" from="Microsoft" modified="false" />
2206           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2207         </remarks>
2208         <summary>
2209           <attribution license="cc4" from="Microsoft" modified="false" />
2210           <para>The <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2211         </summary>
2212       </Docs>
2213       <AssemblyInfo>
2214         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2215         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2216       </AssemblyInfo>
2217     </Member>
2218     <Member MemberName="MouseUp">
2219       <MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseUp;" />
2220       <MemberType>Event</MemberType>
2221       <Attributes>
2222         <Attribute>
2223           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2224         </Attribute>
2225         <Attribute>
2226           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2227         </Attribute>
2228       </Attributes>
2229       <ReturnValue>
2230         <ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType>
2231       </ReturnValue>
2232       <Docs>
2233         <remarks>
2234           <attribution license="cc4" from="Microsoft" modified="false" />
2235           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2236         </remarks>
2237         <summary>
2238           <attribution license="cc4" from="Microsoft" modified="false" />
2239           <para>The <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2240         </summary>
2241       </Docs>
2242       <AssemblyInfo>
2243         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2244         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2245       </AssemblyInfo>
2246     </Member>
2247     <Member MemberName="MouseWheel">
2248       <MemberSignature Language="C#" Value="public event System.Windows.Forms.MouseEventHandler MouseWheel;" />
2249       <MemberType>Event</MemberType>
2250       <Attributes>
2251         <Attribute>
2252           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2253         </Attribute>
2254         <Attribute>
2255           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2256         </Attribute>
2257       </Attributes>
2258       <ReturnValue>
2259         <ReturnType>System.Windows.Forms.MouseEventHandler</ReturnType>
2260       </ReturnValue>
2261       <Docs>
2262         <remarks>
2263           <attribution license="cc4" from="Microsoft" modified="false" />
2264           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.MouseWheel" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2265         </remarks>
2266         <summary>
2267           <attribution license="cc4" from="Microsoft" modified="false" />
2268           <para>The <see cref="E:System.Windows.Forms.AxHost.MouseWheel" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2269         </summary>
2270       </Docs>
2271       <AssemblyInfo>
2272         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2273         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2274       </AssemblyInfo>
2275     </Member>
2276     <Member MemberName="OcxState">
2277       <MemberSignature Language="C#" Value="public System.Windows.Forms.AxHost.State OcxState { set; get; }" />
2278       <MemberType>Property</MemberType>
2279       <Attributes>
2280         <Attribute>
2281           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName>
2282         </Attribute>
2283         <Attribute>
2284           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2285         </Attribute>
2286         <Attribute>
2287           <AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
2288         </Attribute>
2289         <Attribute>
2290           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2291         </Attribute>
2292       </Attributes>
2293       <ReturnValue>
2294         <ReturnType>System.Windows.Forms.AxHost+State</ReturnType>
2295       </ReturnValue>
2296       <Docs>
2297         <value>To be added.</value>
2298         <remarks>
2299           <attribution license="cc4" from="Microsoft" modified="false" />
2300           <para>The value of the <see cref="P:System.Windows.Forms.AxHost.OcxState" /> property is used after the control is created but before it is shown. The persisted state of the underlying ActiveX control is returned in the <see cref="T:System.Windows.Forms.AxHost.State" />.</para>
2301         </remarks>
2302         <summary>
2303           <attribution license="cc4" from="Microsoft" modified="false" />
2304           <para>Gets or sets the persisted state of the ActiveX control.</para>
2305         </summary>
2306       </Docs>
2307       <AssemblyInfo>
2308         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2309         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2310       </AssemblyInfo>
2311     </Member>
2312     <Member MemberName="OnBackColorChanged">
2313       <MemberSignature Language="C#" Value="protected override void OnBackColorChanged (EventArgs e);" />
2314       <MemberType>Method</MemberType>
2315       <ReturnValue>
2316         <ReturnType>System.Void</ReturnType>
2317       </ReturnValue>
2318       <Parameters>
2319         <Parameter Name="e" Type="System.EventArgs" />
2320       </Parameters>
2321       <Docs>
2322         <param name="e">To be added.</param>
2323         <summary>To be added.</summary>
2324         <remarks>To be added.</remarks>
2325       </Docs>
2326       <AssemblyInfo>
2327         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2328         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2329       </AssemblyInfo>
2330     </Member>
2331     <Member MemberName="OnFontChanged">
2332       <MemberSignature Language="C#" Value="protected override void OnFontChanged (EventArgs e);" />
2333       <MemberType>Method</MemberType>
2334       <ReturnValue>
2335         <ReturnType>System.Void</ReturnType>
2336       </ReturnValue>
2337       <Parameters>
2338         <Parameter Name="e" Type="System.EventArgs" />
2339       </Parameters>
2340       <Docs>
2341         <param name="e">To be added.</param>
2342         <summary>To be added.</summary>
2343         <remarks>To be added.</remarks>
2344         <since version=".NET 2.0" />
2345       </Docs>
2346       <AssemblyInfo>
2347         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2348         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2349       </AssemblyInfo>
2350     </Member>
2351     <Member MemberName="OnForeColorChanged">
2352       <MemberSignature Language="C#" Value="protected override void OnForeColorChanged (EventArgs e);" />
2353       <MemberType>Method</MemberType>
2354       <ReturnValue>
2355         <ReturnType>System.Void</ReturnType>
2356       </ReturnValue>
2357       <Parameters>
2358         <Parameter Name="e" Type="System.EventArgs" />
2359       </Parameters>
2360       <Docs>
2361         <param name="e">To be added.</param>
2362         <summary>To be added.</summary>
2363         <remarks>To be added.</remarks>
2364       </Docs>
2365       <AssemblyInfo>
2366         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2367         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2368       </AssemblyInfo>
2369     </Member>
2370     <Member MemberName="OnHandleCreated">
2371       <MemberSignature Language="C#" Value="protected override void OnHandleCreated (EventArgs e);" />
2372       <MemberType>Method</MemberType>
2373       <ReturnValue>
2374         <ReturnType>System.Void</ReturnType>
2375       </ReturnValue>
2376       <Parameters>
2377         <Parameter Name="e" Type="System.EventArgs" />
2378       </Parameters>
2379       <Docs>
2380         <param name="e">To be added.</param>
2381         <summary>To be added.</summary>
2382         <remarks>To be added.</remarks>
2383       </Docs>
2384       <AssemblyInfo>
2385         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2386         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2387       </AssemblyInfo>
2388     </Member>
2389     <Member MemberName="OnInPlaceActive">
2390       <MemberSignature Language="C#" Value="protected virtual void OnInPlaceActive ();" />
2391       <MemberType>Method</MemberType>
2392       <ReturnValue>
2393         <ReturnType>System.Void</ReturnType>
2394       </ReturnValue>
2395       <Parameters />
2396       <Docs>
2397         <remarks>
2398           <attribution license="cc4" from="Microsoft" modified="false" />
2399           <para>This base-class implementation is empty.</para>
2400         </remarks>
2401         <summary>
2402           <attribution license="cc4" from="Microsoft" modified="false" />
2403           <para>Called when the control transitions to the in-place active state.</para>
2404         </summary>
2405       </Docs>
2406       <AssemblyInfo>
2407         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2408         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2409       </AssemblyInfo>
2410     </Member>
2411     <Member MemberName="OnLostFocus">
2412       <MemberSignature Language="C#" Value="protected override void OnLostFocus (EventArgs e);" />
2413       <MemberType>Method</MemberType>
2414       <ReturnValue>
2415         <ReturnType>System.Void</ReturnType>
2416       </ReturnValue>
2417       <Parameters>
2418         <Parameter Name="e" Type="System.EventArgs" />
2419       </Parameters>
2420       <Docs>
2421         <param name="e">To be added.</param>
2422         <summary>To be added.</summary>
2423         <remarks>To be added.</remarks>
2424       </Docs>
2425       <AssemblyInfo>
2426         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2427         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2428       </AssemblyInfo>
2429       <Attributes>
2430         <Attribute>
2431           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2432         </Attribute>
2433       </Attributes>
2434     </Member>
2435     <Member MemberName="Paint">
2436       <MemberSignature Language="C#" Value="public event System.Windows.Forms.PaintEventHandler Paint;" />
2437       <MemberType>Event</MemberType>
2438       <Attributes>
2439         <Attribute>
2440           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2441         </Attribute>
2442         <Attribute>
2443           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2444         </Attribute>
2445       </Attributes>
2446       <ReturnValue>
2447         <ReturnType>System.Windows.Forms.PaintEventHandler</ReturnType>
2448       </ReturnValue>
2449       <Docs>
2450         <remarks>
2451           <attribution license="cc4" from="Microsoft" modified="false" />
2452           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.Paint" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2453         </remarks>
2454         <summary>
2455           <attribution license="cc4" from="Microsoft" modified="false" />
2456           <para>The <see cref="E:System.Windows.Forms.AxHost.Paint" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2457         </summary>
2458       </Docs>
2459       <AssemblyInfo>
2460         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2461         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2462       </AssemblyInfo>
2463     </Member>
2464     <Member MemberName="PreProcessMessage">
2465       <MemberSignature Language="C#" Value="public override bool PreProcessMessage (ref System.Windows.Forms.Message msg);" />
2466       <MemberType>Method</MemberType>
2467       <ReturnValue>
2468         <ReturnType>System.Boolean</ReturnType>
2469       </ReturnValue>
2470       <Parameters>
2471         <Parameter Name="msg" Type="System.Windows.Forms.Message&amp;" RefType="ref" />
2472       </Parameters>
2473       <Docs>
2474         <param name="msg">To be added.</param>
2475         <summary>To be added.</summary>
2476         <returns>To be added.</returns>
2477         <remarks>To be added.</remarks>
2478       </Docs>
2479       <AssemblyInfo>
2480         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2481         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2482       </AssemblyInfo>
2483     </Member>
2484     <Member MemberName="ProcessDialogKey">
2485       <MemberSignature Language="C#" Value="protected override bool ProcessDialogKey (System.Windows.Forms.Keys keyData);" />
2486       <MemberType>Method</MemberType>
2487       <ReturnValue>
2488         <ReturnType>System.Boolean</ReturnType>
2489       </ReturnValue>
2490       <Parameters>
2491         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
2492       </Parameters>
2493       <Docs>
2494         <param name="keyData">To be added.</param>
2495         <summary>To be added.</summary>
2496         <returns>To be added.</returns>
2497         <remarks>To be added.</remarks>
2498       </Docs>
2499       <AssemblyInfo>
2500         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2501         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2502       </AssemblyInfo>
2503     </Member>
2504     <Member MemberName="ProcessMnemonic">
2505       <MemberSignature Language="C#" Value="protected override bool ProcessMnemonic (char charCode);" />
2506       <MemberType>Method</MemberType>
2507       <ReturnValue>
2508         <ReturnType>System.Boolean</ReturnType>
2509       </ReturnValue>
2510       <Parameters>
2511         <Parameter Name="charCode" Type="System.Char" />
2512       </Parameters>
2513       <Docs>
2514         <param name="charCode">To be added.</param>
2515         <summary>To be added.</summary>
2516         <returns>To be added.</returns>
2517         <remarks>To be added.</remarks>
2518         <since version=".NET 2.0" />
2519       </Docs>
2520       <AssemblyInfo>
2521         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2522         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2523       </AssemblyInfo>
2524     </Member>
2525     <Member MemberName="PropsValid">
2526       <MemberSignature Language="C#" Value="protected bool PropsValid ();" />
2527       <MemberType>Method</MemberType>
2528       <ReturnValue>
2529         <ReturnType>System.Boolean</ReturnType>
2530       </ReturnValue>
2531       <Parameters />
2532       <Docs>
2533         <remarks>To be added.</remarks>
2534         <summary>
2535           <attribution license="cc4" from="Microsoft" modified="false" />
2536           <para>Returns a value that indicates whether the hosted control is in a state in which its properties can be accessed.</para>
2537         </summary>
2538         <returns>
2539           <attribution license="cc4" from="Microsoft" modified="false" />
2540           <para>true if the properties of the hosted control can be accessed; otherwise, false.</para>
2541         </returns>
2542       </Docs>
2543       <AssemblyInfo>
2544         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2545         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2546       </AssemblyInfo>
2547       <Attributes>
2548         <Attribute>
2549           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2550         </Attribute>
2551       </Attributes>
2552     </Member>
2553     <Member MemberName="QueryAccessibilityHelp">
2554       <MemberSignature Language="C#" Value="public event System.Windows.Forms.QueryAccessibilityHelpEventHandler QueryAccessibilityHelp;" />
2555       <MemberType>Event</MemberType>
2556       <Attributes>
2557         <Attribute>
2558           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2559         </Attribute>
2560         <Attribute>
2561           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2562         </Attribute>
2563       </Attributes>
2564       <ReturnValue>
2565         <ReturnType>System.Windows.Forms.QueryAccessibilityHelpEventHandler</ReturnType>
2566       </ReturnValue>
2567       <Docs>
2568         <remarks>
2569           <attribution license="cc4" from="Microsoft" modified="false" />
2570           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.QueryAccessibilityHelp" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2571         </remarks>
2572         <summary>
2573           <attribution license="cc4" from="Microsoft" modified="false" />
2574           <para>The <see cref="E:System.Windows.Forms.AxHost.QueryAccessibilityHelp" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2575         </summary>
2576       </Docs>
2577       <AssemblyInfo>
2578         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2579         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2580       </AssemblyInfo>
2581     </Member>
2582     <Member MemberName="QueryContinueDrag">
2583       <MemberSignature Language="C#" Value="public event System.Windows.Forms.QueryContinueDragEventHandler QueryContinueDrag;" />
2584       <MemberType>Event</MemberType>
2585       <Attributes>
2586         <Attribute>
2587           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2588         </Attribute>
2589         <Attribute>
2590           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2591         </Attribute>
2592       </Attributes>
2593       <ReturnValue>
2594         <ReturnType>System.Windows.Forms.QueryContinueDragEventHandler</ReturnType>
2595       </ReturnValue>
2596       <Docs>
2597         <remarks>
2598           <attribution license="cc4" from="Microsoft" modified="false" />
2599           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.QueryContinueDrag" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2600         </remarks>
2601         <summary>
2602           <attribution license="cc4" from="Microsoft" modified="false" />
2603           <para>The <see cref="E:System.Windows.Forms.AxHost.QueryContinueDrag" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2604         </summary>
2605       </Docs>
2606       <AssemblyInfo>
2607         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2608         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2609       </AssemblyInfo>
2610     </Member>
2611     <Member MemberName="RaiseOnMouseDown">
2612       <MemberSignature Language="C#" Value="protected void RaiseOnMouseDown (short button, short shift, int x, int y);" />
2613       <MemberType>Method</MemberType>
2614       <ReturnValue>
2615         <ReturnType>System.Void</ReturnType>
2616       </ReturnValue>
2617       <Parameters>
2618         <Parameter Name="button" Type="System.Int16" />
2619         <Parameter Name="shift" Type="System.Int16" />
2620         <Parameter Name="x" Type="System.Int32" />
2621         <Parameter Name="y" Type="System.Int32" />
2622       </Parameters>
2623       <Docs>
2624         <remarks>To be added.</remarks>
2625         <summary>
2626           <attribution license="cc4" from="Microsoft" modified="false" />
2627           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event using the specified 32-bit signed integers.</para>
2628         </summary>
2629         <param name="button">
2630           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2631         <param name="shift">
2632           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2633         <param name="x">
2634           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2635         <param name="y">
2636           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2637       </Docs>
2638       <AssemblyInfo>
2639         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2640         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2641       </AssemblyInfo>
2642       <Attributes>
2643         <Attribute>
2644           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2645         </Attribute>
2646       </Attributes>
2647     </Member>
2648     <Member MemberName="RaiseOnMouseDown">
2649       <MemberSignature Language="C#" Value="protected void RaiseOnMouseDown (short button, short shift, float x, float y);" />
2650       <MemberType>Method</MemberType>
2651       <ReturnValue>
2652         <ReturnType>System.Void</ReturnType>
2653       </ReturnValue>
2654       <Parameters>
2655         <Parameter Name="button" Type="System.Int16" />
2656         <Parameter Name="shift" Type="System.Int16" />
2657         <Parameter Name="x" Type="System.Single" />
2658         <Parameter Name="y" Type="System.Single" />
2659       </Parameters>
2660       <Docs>
2661         <remarks>To be added.</remarks>
2662         <summary>
2663           <attribution license="cc4" from="Microsoft" modified="false" />
2664           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event using the specified single-precision floating-point numbers.</para>
2665         </summary>
2666         <param name="button">
2667           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2668         <param name="shift">
2669           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2670         <param name="x">
2671           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2672         <param name="y">
2673           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2674       </Docs>
2675       <AssemblyInfo>
2676         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2677         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2678       </AssemblyInfo>
2679       <Attributes>
2680         <Attribute>
2681           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2682         </Attribute>
2683       </Attributes>
2684     </Member>
2685     <Member MemberName="RaiseOnMouseDown">
2686       <MemberSignature Language="C#" Value="protected void RaiseOnMouseDown (object o1, object o2, object o3, object o4);" />
2687       <MemberType>Method</MemberType>
2688       <ReturnValue>
2689         <ReturnType>System.Void</ReturnType>
2690       </ReturnValue>
2691       <Parameters>
2692         <Parameter Name="o1" Type="System.Object" />
2693         <Parameter Name="o2" Type="System.Object" />
2694         <Parameter Name="o3" Type="System.Object" />
2695         <Parameter Name="o4" Type="System.Object" />
2696       </Parameters>
2697       <Docs>
2698         <remarks>To be added.</remarks>
2699         <summary>
2700           <attribution license="cc4" from="Microsoft" modified="false" />
2701           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseDown" /> event using the specified objects.</para>
2702         </summary>
2703         <param name="o1">
2704           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2705         <param name="o2">
2706           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2707         <param name="o3">
2708           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2709         <param name="o4">
2710           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2711       </Docs>
2712       <AssemblyInfo>
2713         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2714         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2715       </AssemblyInfo>
2716       <Attributes>
2717         <Attribute>
2718           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2719         </Attribute>
2720       </Attributes>
2721     </Member>
2722     <Member MemberName="RaiseOnMouseMove">
2723       <MemberSignature Language="C#" Value="protected void RaiseOnMouseMove (short button, short shift, int x, int y);" />
2724       <MemberType>Method</MemberType>
2725       <ReturnValue>
2726         <ReturnType>System.Void</ReturnType>
2727       </ReturnValue>
2728       <Parameters>
2729         <Parameter Name="button" Type="System.Int16" />
2730         <Parameter Name="shift" Type="System.Int16" />
2731         <Parameter Name="x" Type="System.Int32" />
2732         <Parameter Name="y" Type="System.Int32" />
2733       </Parameters>
2734       <Docs>
2735         <remarks>To be added.</remarks>
2736         <summary>
2737           <attribution license="cc4" from="Microsoft" modified="false" />
2738           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event using the specified 32-bit signed integers.</para>
2739         </summary>
2740         <param name="button">
2741           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2742         <param name="shift">
2743           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2744         <param name="x">
2745           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2746         <param name="y">
2747           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2748       </Docs>
2749       <AssemblyInfo>
2750         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2751         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2752       </AssemblyInfo>
2753       <Attributes>
2754         <Attribute>
2755           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2756         </Attribute>
2757       </Attributes>
2758     </Member>
2759     <Member MemberName="RaiseOnMouseMove">
2760       <MemberSignature Language="C#" Value="protected void RaiseOnMouseMove (short button, short shift, float x, float y);" />
2761       <MemberType>Method</MemberType>
2762       <ReturnValue>
2763         <ReturnType>System.Void</ReturnType>
2764       </ReturnValue>
2765       <Parameters>
2766         <Parameter Name="button" Type="System.Int16" />
2767         <Parameter Name="shift" Type="System.Int16" />
2768         <Parameter Name="x" Type="System.Single" />
2769         <Parameter Name="y" Type="System.Single" />
2770       </Parameters>
2771       <Docs>
2772         <remarks>To be added.</remarks>
2773         <summary>
2774           <attribution license="cc4" from="Microsoft" modified="false" />
2775           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event using the specified single-precision floating-point numbers.</para>
2776         </summary>
2777         <param name="button">
2778           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2779         <param name="shift">
2780           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2781         <param name="x">
2782           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2783         <param name="y">
2784           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2785       </Docs>
2786       <AssemblyInfo>
2787         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2788         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2789       </AssemblyInfo>
2790       <Attributes>
2791         <Attribute>
2792           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2793         </Attribute>
2794       </Attributes>
2795     </Member>
2796     <Member MemberName="RaiseOnMouseMove">
2797       <MemberSignature Language="C#" Value="protected void RaiseOnMouseMove (object o1, object o2, object o3, object o4);" />
2798       <MemberType>Method</MemberType>
2799       <ReturnValue>
2800         <ReturnType>System.Void</ReturnType>
2801       </ReturnValue>
2802       <Parameters>
2803         <Parameter Name="o1" Type="System.Object" />
2804         <Parameter Name="o2" Type="System.Object" />
2805         <Parameter Name="o3" Type="System.Object" />
2806         <Parameter Name="o4" Type="System.Object" />
2807       </Parameters>
2808       <Docs>
2809         <remarks>To be added.</remarks>
2810         <summary>
2811           <attribution license="cc4" from="Microsoft" modified="false" />
2812           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseMove" /> event using the specified objects.</para>
2813         </summary>
2814         <param name="o1">
2815           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2816         <param name="o2">
2817           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2818         <param name="o3">
2819           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2820         <param name="o4">
2821           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2822       </Docs>
2823       <AssemblyInfo>
2824         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2825         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2826       </AssemblyInfo>
2827       <Attributes>
2828         <Attribute>
2829           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2830         </Attribute>
2831       </Attributes>
2832     </Member>
2833     <Member MemberName="RaiseOnMouseUp">
2834       <MemberSignature Language="C#" Value="protected void RaiseOnMouseUp (short button, short shift, int x, int y);" />
2835       <MemberType>Method</MemberType>
2836       <ReturnValue>
2837         <ReturnType>System.Void</ReturnType>
2838       </ReturnValue>
2839       <Parameters>
2840         <Parameter Name="button" Type="System.Int16" />
2841         <Parameter Name="shift" Type="System.Int16" />
2842         <Parameter Name="x" Type="System.Int32" />
2843         <Parameter Name="y" Type="System.Int32" />
2844       </Parameters>
2845       <Docs>
2846         <remarks>To be added.</remarks>
2847         <summary>
2848           <attribution license="cc4" from="Microsoft" modified="false" />
2849           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event using the specified 32-bit signed integers.</para>
2850         </summary>
2851         <param name="button">
2852           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2853         <param name="shift">
2854           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2855         <param name="x">
2856           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2857         <param name="y">
2858           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2859       </Docs>
2860       <AssemblyInfo>
2861         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2862         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2863       </AssemblyInfo>
2864       <Attributes>
2865         <Attribute>
2866           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2867         </Attribute>
2868       </Attributes>
2869     </Member>
2870     <Member MemberName="RaiseOnMouseUp">
2871       <MemberSignature Language="C#" Value="protected void RaiseOnMouseUp (short button, short shift, float x, float y);" />
2872       <MemberType>Method</MemberType>
2873       <ReturnValue>
2874         <ReturnType>System.Void</ReturnType>
2875       </ReturnValue>
2876       <Parameters>
2877         <Parameter Name="button" Type="System.Int16" />
2878         <Parameter Name="shift" Type="System.Int16" />
2879         <Parameter Name="x" Type="System.Single" />
2880         <Parameter Name="y" Type="System.Single" />
2881       </Parameters>
2882       <Docs>
2883         <remarks>To be added.</remarks>
2884         <summary>
2885           <attribution license="cc4" from="Microsoft" modified="false" />
2886           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event using the specified single-precision floating-point numbers.</para>
2887         </summary>
2888         <param name="button">
2889           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2890         <param name="shift">
2891           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2892         <param name="x">
2893           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2894         <param name="y">
2895           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2896       </Docs>
2897       <AssemblyInfo>
2898         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2899         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2900       </AssemblyInfo>
2901       <Attributes>
2902         <Attribute>
2903           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2904         </Attribute>
2905       </Attributes>
2906     </Member>
2907     <Member MemberName="RaiseOnMouseUp">
2908       <MemberSignature Language="C#" Value="protected void RaiseOnMouseUp (object o1, object o2, object o3, object o4);" />
2909       <MemberType>Method</MemberType>
2910       <ReturnValue>
2911         <ReturnType>System.Void</ReturnType>
2912       </ReturnValue>
2913       <Parameters>
2914         <Parameter Name="o1" Type="System.Object" />
2915         <Parameter Name="o2" Type="System.Object" />
2916         <Parameter Name="o3" Type="System.Object" />
2917         <Parameter Name="o4" Type="System.Object" />
2918       </Parameters>
2919       <Docs>
2920         <remarks>To be added.</remarks>
2921         <summary>
2922           <attribution license="cc4" from="Microsoft" modified="false" />
2923           <para>Raises the <see cref="E:System.Windows.Forms.AxHost.MouseUp" /> event using the specified objects.</para>
2924         </summary>
2925         <param name="o1">
2926           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.MouseButtons" /> values that indicate which mouse button was pressed. </param>
2927         <param name="o2">
2928           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
2929         <param name="o3">
2930           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate of a mouse click, in pixels.</param>
2931         <param name="o4">
2932           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate of a mouse click, in pixels. </param>
2933       </Docs>
2934       <AssemblyInfo>
2935         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2936         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2937       </AssemblyInfo>
2938       <Attributes>
2939         <Attribute>
2940           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2941         </Attribute>
2942       </Attributes>
2943     </Member>
2944     <Member MemberName="RightToLeft">
2945       <MemberSignature Language="C#" Value="public virtual bool RightToLeft { set; get; }" />
2946       <MemberType>Property</MemberType>
2947       <Attributes>
2948         <Attribute>
2949           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
2950         </Attribute>
2951         <Attribute>
2952           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2953         </Attribute>
2954         <Attribute>
2955           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2956         </Attribute>
2957       </Attributes>
2958       <ReturnValue>
2959         <ReturnType>System.Boolean</ReturnType>
2960       </ReturnValue>
2961       <Docs>
2962         <value>To be added.</value>
2963         <remarks>To be added.</remarks>
2964         <summary>
2965           <attribution license="cc4" from="Microsoft" modified="false" />
2966           <para>This property is not relevant for this class.</para>
2967         </summary>
2968       </Docs>
2969       <AssemblyInfo>
2970         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2971         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2972       </AssemblyInfo>
2973     </Member>
2974     <Member MemberName="RightToLeftChanged">
2975       <MemberSignature Language="C#" Value="public event EventHandler RightToLeftChanged;" />
2976       <MemberType>Event</MemberType>
2977       <Attributes>
2978         <Attribute>
2979           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
2980         </Attribute>
2981         <Attribute>
2982           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
2983         </Attribute>
2984       </Attributes>
2985       <ReturnValue>
2986         <ReturnType>System.EventHandler</ReturnType>
2987       </ReturnValue>
2988       <Docs>
2989         <remarks>
2990           <attribution license="cc4" from="Microsoft" modified="false" />
2991           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.RightToLeftChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
2992         </remarks>
2993         <summary>
2994           <attribution license="cc4" from="Microsoft" modified="false" />
2995           <para>The <see cref="E:System.Windows.Forms.AxHost.RightToLeftChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
2996         </summary>
2997       </Docs>
2998       <AssemblyInfo>
2999         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3000         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3001       </AssemblyInfo>
3002     </Member>
3003     <Member MemberName="SetAboutBoxDelegate">
3004       <MemberSignature Language="C#" Value="protected void SetAboutBoxDelegate (System.Windows.Forms.AxHost.AboutBoxDelegate d);" />
3005       <MemberType>Method</MemberType>
3006       <ReturnValue>
3007         <ReturnType>System.Void</ReturnType>
3008       </ReturnValue>
3009       <Parameters>
3010         <Parameter Name="d" Type="System.Windows.Forms.AxHost+AboutBoxDelegate" />
3011       </Parameters>
3012       <Docs>
3013         <param name="d">To be added.</param>
3014         <summary>To be added.</summary>
3015         <remarks>To be added.</remarks>
3016       </Docs>
3017       <AssemblyInfo>
3018         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3019         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3020       </AssemblyInfo>
3021     </Member>
3022     <Member MemberName="SetBoundsCore">
3023       <MemberSignature Language="C#" Value="protected override void SetBoundsCore (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);" />
3024       <MemberType>Method</MemberType>
3025       <ReturnValue>
3026         <ReturnType>System.Void</ReturnType>
3027       </ReturnValue>
3028       <Parameters>
3029         <Parameter Name="x" Type="System.Int32" />
3030         <Parameter Name="y" Type="System.Int32" />
3031         <Parameter Name="width" Type="System.Int32" />
3032         <Parameter Name="height" Type="System.Int32" />
3033         <Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" />
3034       </Parameters>
3035       <Docs>
3036         <param name="x">To be added.</param>
3037         <param name="y">To be added.</param>
3038         <param name="width">To be added.</param>
3039         <param name="height">To be added.</param>
3040         <param name="specified">To be added.</param>
3041         <summary>To be added.</summary>
3042         <remarks>To be added.</remarks>
3043         <since version=".NET 2.0" />
3044       </Docs>
3045       <AssemblyInfo>
3046         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3047         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3048       </AssemblyInfo>
3049     </Member>
3050     <Member MemberName="SetVisibleCore">
3051       <MemberSignature Language="C#" Value="protected override void SetVisibleCore (bool value);" />
3052       <MemberType>Method</MemberType>
3053       <ReturnValue>
3054         <ReturnType>System.Void</ReturnType>
3055       </ReturnValue>
3056       <Parameters>
3057         <Parameter Name="value" Type="System.Boolean" />
3058       </Parameters>
3059       <Docs>
3060         <param name="value">To be added.</param>
3061         <summary>To be added.</summary>
3062         <remarks>To be added.</remarks>
3063       </Docs>
3064       <AssemblyInfo>
3065         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3066         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3067       </AssemblyInfo>
3068     </Member>
3069     <Member MemberName="ShowAboutBox">
3070       <MemberSignature Language="C#" Value="public void ShowAboutBox ();" />
3071       <MemberType>Method</MemberType>
3072       <ReturnValue>
3073         <ReturnType>System.Void</ReturnType>
3074       </ReturnValue>
3075       <Parameters />
3076       <Docs>
3077         <remarks>
3078           <attribution license="cc4" from="Microsoft" modified="false" />
3079           <para>If <see cref="P:System.Windows.Forms.AxHost.HasAboutBox" /> is false, no <ui>About</ui> dialog box is displayed.</para>
3080         </remarks>
3081         <summary>
3082           <attribution license="cc4" from="Microsoft" modified="false" />
3083           <para>Displays the ActiveX control's <ui>About</ui> dialog box.</para>
3084         </summary>
3085       </Docs>
3086       <AssemblyInfo>
3087         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3088         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3089       </AssemblyInfo>
3090     </Member>
3091     <Member MemberName="ShowPropertyPages">
3092       <MemberSignature Language="C#" Value="public void ShowPropertyPages ();" />
3093       <MemberType>Method</MemberType>
3094       <ReturnValue>
3095         <ReturnType>System.Void</ReturnType>
3096       </ReturnValue>
3097       <Parameters />
3098       <Docs>
3099         <remarks>
3100           <attribution license="cc4" from="Microsoft" modified="false" />
3101           <para>If <see cref="M:System.Windows.Forms.AxHost.HasPropertyPages" /> is false, no property pages are displayed.</para>
3102           <para>Property pages allow an ActiveX control user to view and change ActiveX control properties. These properties are accessed by invoking a control properties dialog box, which contains one or more property pages that provide a customized, graphical interface for viewing and editing the control properties.</para>
3103         </remarks>
3104         <summary>
3105           <attribution license="cc4" from="Microsoft" modified="false" />
3106           <para>Displays the property pages associated with the ActiveX control.</para>
3107         </summary>
3108       </Docs>
3109       <AssemblyInfo>
3110         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3111         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3112       </AssemblyInfo>
3113     </Member>
3114     <Member MemberName="ShowPropertyPages">
3115       <MemberSignature Language="C#" Value="public void ShowPropertyPages (System.Windows.Forms.Control control);" />
3116       <MemberType>Method</MemberType>
3117       <ReturnValue>
3118         <ReturnType>System.Void</ReturnType>
3119       </ReturnValue>
3120       <Parameters>
3121         <Parameter Name="control" Type="System.Windows.Forms.Control" />
3122       </Parameters>
3123       <Docs>
3124         <remarks>
3125           <attribution license="cc4" from="Microsoft" modified="false" />
3126           <para>If <see cref="M:System.Windows.Forms.AxHost.HasPropertyPages" /> is false, no property pages are displayed.</para>
3127           <para>Property pages allow an ActiveX control user to view and change ActiveX control properties. These properties are accessed by invoking a control properties dialog box, which contains one or more property pages that provide a customized, graphical interface for viewing and editing the control properties.</para>
3128         </remarks>
3129         <summary>
3130           <attribution license="cc4" from="Microsoft" modified="false" />
3131           <para>Displays the property pages associated with the ActiveX control assigned to the specified parent control.</para>
3132         </summary>
3133         <param name="control">
3134           <attribution license="cc4" from="Microsoft" modified="false" />The parent <see cref="T:System.Windows.Forms.Control" /> of the ActiveX control. </param>
3135       </Docs>
3136       <AssemblyInfo>
3137         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3138         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3139       </AssemblyInfo>
3140     </Member>
3141     <Member MemberName="Site">
3142       <MemberSignature Language="C#" Value="public override System.ComponentModel.ISite Site { set; }" />
3143       <MemberType>Property</MemberType>
3144       <ReturnValue>
3145         <ReturnType>System.ComponentModel.ISite</ReturnType>
3146       </ReturnValue>
3147       <Docs>
3148         <summary>To be added.</summary>
3149         <value>To be added.</value>
3150         <remarks>To be added.</remarks>
3151         <since version=".NET 2.0" />
3152       </Docs>
3153       <AssemblyInfo>
3154         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3155         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3156       </AssemblyInfo>
3157     </Member>
3158     <Member MemberName="StyleChanged">
3159       <MemberSignature Language="C#" Value="public event EventHandler StyleChanged;" />
3160       <MemberType>Event</MemberType>
3161       <Attributes>
3162         <Attribute>
3163           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
3164         </Attribute>
3165         <Attribute>
3166           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
3167         </Attribute>
3168       </Attributes>
3169       <ReturnValue>
3170         <ReturnType>System.EventHandler</ReturnType>
3171       </ReturnValue>
3172       <Docs>
3173         <remarks>
3174           <attribution license="cc4" from="Microsoft" modified="false" />
3175           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.StyleChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
3176         </remarks>
3177         <summary>
3178           <attribution license="cc4" from="Microsoft" modified="false" />
3179           <para>The <see cref="E:System.Windows.Forms.AxHost.StyleChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
3180         </summary>
3181       </Docs>
3182       <AssemblyInfo>
3183         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3184         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3185       </AssemblyInfo>
3186     </Member>
3187     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetAttributes">
3188       <MemberSignature Language="C#" Value="System.ComponentModel.AttributeCollection ICustomTypeDescriptor.GetAttributes ();" />
3189       <MemberType>Method</MemberType>
3190       <AssemblyInfo>
3191         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3192         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3193       </AssemblyInfo>
3194       <Attributes>
3195         <Attribute>
3196           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3197         </Attribute>
3198       </Attributes>
3199       <ReturnValue>
3200         <ReturnType>System.ComponentModel.AttributeCollection</ReturnType>
3201       </ReturnValue>
3202       <Parameters />
3203       <Docs>
3204         <remarks>To be added.</remarks>
3205         <summary>
3206           <attribution license="cc4" from="Microsoft" modified="false" />
3207           <para>Returns a collection of type <see cref="T:System.Attribute" /> for the current object.</para>
3208         </summary>
3209         <returns>
3210           <attribution license="cc4" from="Microsoft" modified="false" />
3211           <para>An <see cref="T:System.ComponentModel.AttributeCollection" /> with the attributes for the current object.</para>
3212         </returns>
3213       </Docs>
3214     </Member>
3215     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetClassName">
3216       <MemberSignature Language="C#" Value="string ICustomTypeDescriptor.GetClassName ();" />
3217       <MemberType>Method</MemberType>
3218       <AssemblyInfo>
3219         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3220         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3221       </AssemblyInfo>
3222       <Attributes>
3223         <Attribute>
3224           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3225         </Attribute>
3226       </Attributes>
3227       <ReturnValue>
3228         <ReturnType>System.String</ReturnType>
3229       </ReturnValue>
3230       <Parameters />
3231       <Docs>
3232         <remarks>
3233           <attribution license="cc4" from="Microsoft" modified="false" />
3234           <para>Use the type name instead of the value that the <see cref="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetClassName" /> method returns.</para>
3235         </remarks>
3236         <summary>
3237           <attribution license="cc4" from="Microsoft" modified="false" />
3238           <para>Returns the class name of the current object.</para>
3239         </summary>
3240         <returns>
3241           <attribution license="cc4" from="Microsoft" modified="false" />
3242           <para>Returns null in all cases.</para>
3243         </returns>
3244       </Docs>
3245     </Member>
3246     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetComponentName">
3247       <MemberSignature Language="C#" Value="string ICustomTypeDescriptor.GetComponentName ();" />
3248       <MemberType>Method</MemberType>
3249       <AssemblyInfo>
3250         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3251         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3252       </AssemblyInfo>
3253       <Attributes>
3254         <Attribute>
3255           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3256         </Attribute>
3257       </Attributes>
3258       <ReturnValue>
3259         <ReturnType>System.String</ReturnType>
3260       </ReturnValue>
3261       <Parameters />
3262       <Docs>
3263         <remarks>
3264           <attribution license="cc4" from="Microsoft" modified="false" />
3265           <para>Use the default name instead of the value that the <see cref="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetComponentName" /> method returns.</para>
3266         </remarks>
3267         <summary>
3268           <attribution license="cc4" from="Microsoft" modified="false" />
3269           <para>Returns the name of the current object.</para>
3270         </summary>
3271         <returns>
3272           <attribution license="cc4" from="Microsoft" modified="false" />
3273           <para>Returns null in all cases.</para>
3274         </returns>
3275       </Docs>
3276     </Member>
3277     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetConverter">
3278       <MemberSignature Language="C#" Value="System.ComponentModel.TypeConverter ICustomTypeDescriptor.GetConverter ();" />
3279       <MemberType>Method</MemberType>
3280       <AssemblyInfo>
3281         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3282         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3283       </AssemblyInfo>
3284       <Attributes>
3285         <Attribute>
3286           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3287         </Attribute>
3288       </Attributes>
3289       <ReturnValue>
3290         <ReturnType>System.ComponentModel.TypeConverter</ReturnType>
3291       </ReturnValue>
3292       <Parameters />
3293       <Docs>
3294         <remarks>
3295           <attribution license="cc4" from="Microsoft" modified="false" />
3296           <para>Use the default type converter instead of the value that the <see cref="M:System.Windows.Forms.AxHost.System#ComponentModel#ICustomTypeDescriptor#GetConverter" /> method returns.</para>
3297         </remarks>
3298         <summary>
3299           <attribution license="cc4" from="Microsoft" modified="false" />
3300           <para>Returns a type converter for the current object.</para>
3301         </summary>
3302         <returns>
3303           <attribution license="cc4" from="Microsoft" modified="false" />
3304           <para>Returns null in all cases.</para>
3305         </returns>
3306       </Docs>
3307     </Member>
3308     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent">
3309       <MemberSignature Language="C#" Value="System.ComponentModel.EventDescriptor ICustomTypeDescriptor.GetDefaultEvent ();" />
3310       <MemberType>Method</MemberType>
3311       <AssemblyInfo>
3312         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3314       </AssemblyInfo>
3315       <Attributes>
3316         <Attribute>
3317           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3318         </Attribute>
3319       </Attributes>
3320       <ReturnValue>
3321         <ReturnType>System.ComponentModel.EventDescriptor</ReturnType>
3322       </ReturnValue>
3323       <Parameters />
3324       <Docs>
3325         <remarks>To be added.</remarks>
3326         <summary>
3327           <attribution license="cc4" from="Microsoft" modified="false" />
3328           <para>Returns the default event for the current object.</para>
3329         </summary>
3330         <returns>
3331           <attribution license="cc4" from="Microsoft" modified="false" />
3332           <para>An <see cref="T:System.ComponentModel.EventDescriptor" /> that represents the default event for the current object, or null if the object does not have events.</para>
3333         </returns>
3334       </Docs>
3335     </Member>
3336     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty">
3337       <MemberSignature Language="C#" Value="System.ComponentModel.PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty ();" />
3338       <MemberType>Method</MemberType>
3339       <AssemblyInfo>
3340         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3341         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3342       </AssemblyInfo>
3343       <Attributes>
3344         <Attribute>
3345           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3346         </Attribute>
3347       </Attributes>
3348       <ReturnValue>
3349         <ReturnType>System.ComponentModel.PropertyDescriptor</ReturnType>
3350       </ReturnValue>
3351       <Parameters />
3352       <Docs>
3353         <remarks>To be added.</remarks>
3354         <summary>
3355           <attribution license="cc4" from="Microsoft" modified="false" />
3356           <para>Returns the default property for the current object.</para>
3357         </summary>
3358         <returns>
3359           <attribution license="cc4" from="Microsoft" modified="false" />
3360           <para>A <see cref="T:System.ComponentModel.PropertyDescriptor" /> that represents the default property for the current object, or null if the object does not have properties.</para>
3361         </returns>
3362       </Docs>
3363     </Member>
3364     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetEditor">
3365       <MemberSignature Language="C#" Value="object ICustomTypeDescriptor.GetEditor (Type editorBaseType);" />
3366       <MemberType>Method</MemberType>
3367       <AssemblyInfo>
3368         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3369         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3370       </AssemblyInfo>
3371       <Attributes>
3372         <Attribute>
3373           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3374         </Attribute>
3375       </Attributes>
3376       <ReturnValue>
3377         <ReturnType>System.Object</ReturnType>
3378       </ReturnValue>
3379       <Parameters>
3380         <Parameter Name="editorBaseType" Type="System.Type" />
3381       </Parameters>
3382       <Docs>
3383         <remarks>To be added.</remarks>
3384         <summary>
3385           <attribution license="cc4" from="Microsoft" modified="false" />
3386           <para>Returns an editor of the specified type for the current object.</para>
3387         </summary>
3388         <returns>
3389           <attribution license="cc4" from="Microsoft" modified="false" />
3390           <para>An object of the specified type that is the editor for the current object, or null if the editor cannot be found.</para>
3391         </returns>
3392         <param name="editorBaseType">
3393           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Type" /> that represents the editor for the current object.</param>
3394       </Docs>
3395     </Member>
3396     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetEvents">
3397       <MemberSignature Language="C#" Value="System.ComponentModel.EventDescriptorCollection ICustomTypeDescriptor.GetEvents ();" />
3398       <MemberType>Method</MemberType>
3399       <AssemblyInfo>
3400         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3401         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3402       </AssemblyInfo>
3403       <Attributes>
3404         <Attribute>
3405           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3406         </Attribute>
3407       </Attributes>
3408       <ReturnValue>
3409         <ReturnType>System.ComponentModel.EventDescriptorCollection</ReturnType>
3410       </ReturnValue>
3411       <Parameters />
3412       <Docs>
3413         <remarks>To be added.</remarks>
3414         <summary>
3415           <attribution license="cc4" from="Microsoft" modified="false" />
3416           <para>Returns the events for the current object.</para>
3417         </summary>
3418         <returns>
3419           <attribution license="cc4" from="Microsoft" modified="false" />
3420           <para>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for the current object.</para>
3421         </returns>
3422       </Docs>
3423     </Member>
3424     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetEvents">
3425       <MemberSignature Language="C#" Value="System.ComponentModel.EventDescriptorCollection ICustomTypeDescriptor.GetEvents (Attribute[] attributes);" />
3426       <MemberType>Method</MemberType>
3427       <AssemblyInfo>
3428         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3429         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3430       </AssemblyInfo>
3431       <Attributes>
3432         <Attribute>
3433           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3434         </Attribute>
3435       </Attributes>
3436       <ReturnValue>
3437         <ReturnType>System.ComponentModel.EventDescriptorCollection</ReturnType>
3438       </ReturnValue>
3439       <Parameters>
3440         <Parameter Name="attributes" Type="System.Attribute[]" />
3441       </Parameters>
3442       <Docs>
3443         <remarks>To be added.</remarks>
3444         <summary>
3445           <attribution license="cc4" from="Microsoft" modified="false" />
3446           <para>Returns the events for the current object using the specified attribute array as a filter.</para>
3447         </summary>
3448         <returns>
3449           <attribution license="cc4" from="Microsoft" modified="false" />
3450           <para>An <see cref="T:System.ComponentModel.EventDescriptorCollection" /> that represents the events for the <see cref="T:System.Windows.Forms.AxHost" /> that match the given set of attributes.</para>
3451         </returns>
3452         <param name="attributes">
3453           <attribution license="cc4" from="Microsoft" modified="false" />An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
3454       </Docs>
3455     </Member>
3456     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetProperties">
3457       <MemberSignature Language="C#" Value="System.ComponentModel.PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties ();" />
3458       <MemberType>Method</MemberType>
3459       <AssemblyInfo>
3460         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3461         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3462       </AssemblyInfo>
3463       <Attributes>
3464         <Attribute>
3465           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3466         </Attribute>
3467       </Attributes>
3468       <ReturnValue>
3469         <ReturnType>System.ComponentModel.PropertyDescriptorCollection</ReturnType>
3470       </ReturnValue>
3471       <Parameters />
3472       <Docs>
3473         <remarks>To be added.</remarks>
3474         <summary>
3475           <attribution license="cc4" from="Microsoft" modified="false" />
3476           <para>Returns the properties for the current object.</para>
3477         </summary>
3478         <returns>
3479           <attribution license="cc4" from="Microsoft" modified="false" />
3480           <para>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the events for the current object.</para>
3481         </returns>
3482       </Docs>
3483     </Member>
3484     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetProperties">
3485       <MemberSignature Language="C#" Value="System.ComponentModel.PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties (Attribute[] attributes);" />
3486       <MemberType>Method</MemberType>
3487       <AssemblyInfo>
3488         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3489         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3490       </AssemblyInfo>
3491       <Attributes>
3492         <Attribute>
3493           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3494         </Attribute>
3495       </Attributes>
3496       <ReturnValue>
3497         <ReturnType>System.ComponentModel.PropertyDescriptorCollection</ReturnType>
3498       </ReturnValue>
3499       <Parameters>
3500         <Parameter Name="attributes" Type="System.Attribute[]" />
3501       </Parameters>
3502       <Docs>
3503         <remarks>To be added.</remarks>
3504         <summary>
3505           <attribution license="cc4" from="Microsoft" modified="false" />
3506           <para>Returns the properties for the current object using the specified attribute array as a filter.</para>
3507         </summary>
3508         <returns>
3509           <attribution license="cc4" from="Microsoft" modified="false" />
3510           <para>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection" /> that represents the events for the current <see cref="T:System.Windows.Forms.AxHost" /> that match the given set of attributes.</para>
3511         </returns>
3512         <param name="attributes">
3513           <attribution license="cc4" from="Microsoft" modified="false" />An array of type <see cref="T:System.Attribute" /> that is used as a filter.</param>
3514       </Docs>
3515     </Member>
3516     <Member MemberName="System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner">
3517       <MemberSignature Language="C#" Value="object ICustomTypeDescriptor.GetPropertyOwner (System.ComponentModel.PropertyDescriptor pd);" />
3518       <MemberType>Method</MemberType>
3519       <AssemblyInfo>
3520         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3521         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3522       </AssemblyInfo>
3523       <Attributes>
3524         <Attribute>
3525           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3526         </Attribute>
3527       </Attributes>
3528       <ReturnValue>
3529         <ReturnType>System.Object</ReturnType>
3530       </ReturnValue>
3531       <Parameters>
3532         <Parameter Name="pd" Type="System.ComponentModel.PropertyDescriptor" />
3533       </Parameters>
3534       <Docs>
3535         <remarks>To be added.</remarks>
3536         <summary>
3537           <attribution license="cc4" from="Microsoft" modified="false" />
3538           <para>Returns the object that owns the specified value.</para>
3539         </summary>
3540         <returns>
3541           <attribution license="cc4" from="Microsoft" modified="false" />
3542           <para>The current object.</para>
3543         </returns>
3544         <param name="pd">
3545           <attribution license="cc4" from="Microsoft" modified="false" />Not used.</param>
3546       </Docs>
3547     </Member>
3548     <Member MemberName="TabIndexChanged">
3549       <MemberSignature Language="C#" Value="public event EventHandler TabIndexChanged;" />
3550       <MemberType>Event</MemberType>
3551       <AssemblyInfo>
3552         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3553       </AssemblyInfo>
3554       <Attributes>
3555         <Attribute>
3556           <AttributeName>System.ComponentModel.EditorBrowsable(State=System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
3557         </Attribute>
3558         <Attribute>
3559           <AttributeName>System.ComponentModel.Browsable(Browsable=False)</AttributeName>
3560         </Attribute>
3561       </Attributes>
3562       <ReturnValue>
3563         <ReturnType>System.EventHandler</ReturnType>
3564       </ReturnValue>
3565       <Docs>
3566         <summary>To be added.</summary>
3567         <remarks>To be added.</remarks>
3568       </Docs>
3569     </Member>
3570     <Member MemberName="TabStopChanged">
3571       <MemberSignature Language="C#" Value="public event EventHandler TabStopChanged;" />
3572       <MemberType>Event</MemberType>
3573       <Attributes>
3574         <Attribute>
3575           <AttributeName>System.ComponentModel.EditorBrowsable(State=System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
3576         </Attribute>
3577         <Attribute>
3578           <AttributeName>System.ComponentModel.Browsable(Browsable=False)</AttributeName>
3579         </Attribute>
3580       </Attributes>
3581       <ReturnValue>
3582         <ReturnType>System.EventHandler</ReturnType>
3583       </ReturnValue>
3584       <Docs>
3585         <summary>To be added.</summary>
3586         <remarks>To be added.</remarks>
3587       </Docs>
3588       <AssemblyInfo>
3589         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3590       </AssemblyInfo>
3591     </Member>
3592     <Member MemberName="Text">
3593       <MemberSignature Language="C#" Value="public override string Text { set; get; }" />
3594       <MemberType>Property</MemberType>
3595       <Attributes>
3596         <Attribute>
3597           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
3598         </Attribute>
3599         <Attribute>
3600           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
3601         </Attribute>
3602       </Attributes>
3603       <ReturnValue>
3604         <ReturnType>System.String</ReturnType>
3605       </ReturnValue>
3606       <Docs>
3607         <value>To be added.</value>
3608         <remarks>To be added.</remarks>
3609         <since version=".NET 2.0" />
3610         <summary>
3611           <attribution license="cc4" from="Microsoft" modified="false" />
3612           <para>This property is not relevant for this class.</para>
3613         </summary>
3614       </Docs>
3615       <AssemblyInfo>
3616         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3617         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3618       </AssemblyInfo>
3619     </Member>
3620     <Member MemberName="TextChanged">
3621       <MemberSignature Language="C#" Value="public event EventHandler TextChanged;" />
3622       <MemberType>Event</MemberType>
3623       <Attributes>
3624         <Attribute>
3625           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
3626         </Attribute>
3627         <Attribute>
3628           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
3629         </Attribute>
3630       </Attributes>
3631       <ReturnValue>
3632         <ReturnType>System.EventHandler</ReturnType>
3633       </ReturnValue>
3634       <Docs>
3635         <since version=".NET 2.0" />
3636         <remarks>
3637           <attribution license="cc4" from="Microsoft" modified="false" />
3638           <para>If you attempt to add or remove a handler for the <see cref="E:System.Windows.Forms.AxHost.TextChanged" /> event, a <see cref="T:System.NotSupportedException" /> is thrown. The events derived from the <see cref="T:System.Windows.Forms.Control" /> class are not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class. The events exposed by the ActiveX control when the <see cref="T:System.Windows.Forms.AxHost" /> wrapper is created are the events that should be used.</para>
3639         </remarks>
3640         <summary>
3641           <attribution license="cc4" from="Microsoft" modified="false" />
3642           <para>The <see cref="E:System.Windows.Forms.AxHost.TextChanged" /> event is not supported by the <see cref="T:System.Windows.Forms.AxHost" /> class.</para>
3643         </summary>
3644       </Docs>
3645       <AssemblyInfo>
3646         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3647         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3648       </AssemblyInfo>
3649     </Member>
3650     <Member MemberName="WndProc">
3651       <MemberSignature Language="C#" Value="protected override void WndProc (ref System.Windows.Forms.Message m);" />
3652       <MemberType>Method</MemberType>
3653       <ReturnValue>
3654         <ReturnType>System.Void</ReturnType>
3655       </ReturnValue>
3656       <Parameters>
3657         <Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" />
3658       </Parameters>
3659       <Docs>
3660         <param name="m">To be added.</param>
3661         <summary>To be added.</summary>
3662         <remarks>To be added.</remarks>
3663         <since version=".NET 2.0" />
3664       </Docs>
3665       <AssemblyInfo>
3666         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
3667         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3668       </AssemblyInfo>
3669     </Member>
3670   </Members>
3671 </Type>