[jit] Enable partial generic sharing when not using AOT as an experiment.
[mono.git] / mcs / class / Managed.Windows.Forms / Documentation / en / System.Windows.Forms / ToolStripComboBox.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="ToolStripComboBox" FullName="System.Windows.Forms.ToolStripComboBox">
3   <TypeSignature Language="C#" Value="public class ToolStripComboBox : System.Windows.Forms.ToolStripControlHost" />
4   <AssemblyInfo>
5     <AssemblyName>System.Windows.Forms</AssemblyName>
6     <AssemblyVersion>2.0.0.0</AssemblyVersion>
7   </AssemblyInfo>
8   <Base>
9     <BaseTypeName>System.Windows.Forms.ToolStripControlHost</BaseTypeName>
10   </Base>
11   <Interfaces />
12   <Attributes>
13     <Attribute>
14       <AttributeName>System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.MenuStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ContextMenuStrip)</AttributeName>
15     </Attribute>
16     <Attribute>
17       <AttributeName>System.ComponentModel.DefaultProperty("Items")</AttributeName>
18     </Attribute>
19   </Attributes>
20   <Docs>
21     <since version=".NET 2.0" />
22     <remarks>
23       <attribution license="cc4" from="Microsoft" modified="false" />
24       <para>
25         <see cref="T:System.Windows.Forms.ToolStripComboBox" /> is the <see cref="T:System.Windows.Forms.ComboBox" /> optimized for hosting in a <see cref="T:System.Windows.Forms.ToolStrip" />. A subset of the hosted control's properties and events are exposed at the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> level, but the underlying <see cref="T:System.Windows.Forms.ComboBox" /> control is fully accessible through the <see cref="P:System.Windows.Forms.ToolStripComboBox.ComboBox" /> property.</para>
26       <para>A <see cref="T:System.Windows.Forms.ToolStripComboBox" /> displays an editing field combined with a <see cref="T:System.Windows.Forms.ListBox" />, allowing the user to select from the list or to enter new text. By default, a <see cref="T:System.Windows.Forms.ToolStripComboBox" /> displays an edit field with a hidden drop-down list. The <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownStyle" /> property determines the style of combo box to display. You can enter a value that allows for a simple drop-down, where the list always displays, a drop-down list box, where the text portion is not editable and you must select an arrow to view the drop-down list box, or the default drop-down list box, where the text portion is editable and the user must press the arrow key to view the list. To always display a list that the user cannot edit, use a <see cref="T:System.Windows.Forms.ListBox" /> control.</para>
27       <para>To add objects to the list at run time, assign an array of object references with the <see cref="M:System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem[])" /> method. The list then displays the default string value for each object. You can add individual objects with the <see cref="Overload:System.Windows.Forms.ToolStripItemCollection.Add" /> method.</para>
28       <para>In addition to display and selection functionality, the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> also provides features that enable you to efficiently add items to the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> and to find text within the items of the list. The <see cref="M:System.Windows.Forms.ToolStripComboBox.BeginUpdate" /> and <see cref="M:System.Windows.Forms.ToolStripComboBox.EndUpdate" /> methods enable you to add a large number of items to the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> without the control being repainted each time an item is added to the list. The <see cref="M:System.Windows.Forms.ToolStripComboBox.FindString(System.String)" /> and <see cref="M:System.Windows.Forms.ToolStripComboBox.FindStringExact(System.String)" /> methods enable you to search for an item in the list that contains a specific search string.</para>
29       <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex" /> property to get or set the current item in the drop-down list, and use the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedItem" /> property to get or set a reference to the current item in the drop-down list.</para>
30     </remarks>
31     <summary>
32       <attribution license="cc4" from="Microsoft" modified="false" />
33       <para>Represents a <see cref="T:System.Windows.Forms.ToolStripComboBox" /> that is properly rendered in a <see cref="T:System.Windows.Forms.ToolStrip" />.</para>
34     </summary>
35   </Docs>
36   <Members>
37     <Member MemberName=".ctor">
38       <MemberSignature Language="C#" Value="public ToolStripComboBox ();" />
39       <MemberType>Constructor</MemberType>
40       <Parameters />
41       <Docs>
42         <remarks>To be added.</remarks>
43         <since version=".NET 2.0" />
44         <summary>
45           <attribution license="cc4" from="Microsoft" modified="false" />
46           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> class.</para>
47         </summary>
48       </Docs>
49       <AssemblyInfo>
50         <AssemblyVersion>2.0.0.0</AssemblyVersion>
51       </AssemblyInfo>
52     </Member>
53     <Member MemberName=".ctor">
54       <MemberSignature Language="C#" Value="public ToolStripComboBox (string name);" />
55       <MemberType>Constructor</MemberType>
56       <Parameters>
57         <Parameter Name="name" Type="System.String" />
58       </Parameters>
59       <Docs>
60         <remarks>To be added.</remarks>
61         <since version=".NET 2.0" />
62         <summary>
63           <attribution license="cc4" from="Microsoft" modified="false" />
64           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> class with the specified name. </para>
65         </summary>
66         <param name="name">
67           <attribution license="cc4" from="Microsoft" modified="false" />The name of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</param>
68       </Docs>
69       <AssemblyInfo>
70         <AssemblyVersion>2.0.0.0</AssemblyVersion>
71       </AssemblyInfo>
72     </Member>
73     <Member MemberName=".ctor">
74       <MemberSignature Language="C#" Value="public ToolStripComboBox (System.Windows.Forms.Control c);" />
75       <MemberType>Constructor</MemberType>
76       <Parameters>
77         <Parameter Name="c" Type="System.Windows.Forms.Control" />
78       </Parameters>
79       <Docs>
80         <remarks>To be added.</remarks>
81         <since version=".NET 2.0" />
82         <summary>
83           <attribution license="cc4" from="Microsoft" modified="false" />
84           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> class derived from a base control.</para>
85         </summary>
86         <param name="c">
87           <attribution license="cc4" from="Microsoft" modified="false" />The base control. </param>
88       </Docs>
89       <AssemblyInfo>
90         <AssemblyVersion>2.0.0.0</AssemblyVersion>
91       </AssemblyInfo>
92       <Attributes>
93         <Attribute>
94           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
95         </Attribute>
96       </Attributes>
97     </Member>
98     <Member MemberName="AutoCompleteCustomSource">
99       <MemberSignature Language="C#" Value="public System.Windows.Forms.AutoCompleteStringCollection AutoCompleteCustomSource { set; get; }" />
100       <MemberType>Property</MemberType>
101       <AssemblyInfo>
102         <AssemblyVersion>2.0.0.0</AssemblyVersion>
103       </AssemblyInfo>
104       <Attributes>
105         <Attribute>
106           <AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
107         </Attribute>
108         <Attribute>
109           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
110         </Attribute>
111         <Attribute>
112           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName>
113         </Attribute>
114         <Attribute>
115           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
116         </Attribute>
117         <Attribute>
118           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
119         </Attribute>
120       </Attributes>
121       <ReturnValue>
122         <ReturnType>System.Windows.Forms.AutoCompleteStringCollection</ReturnType>
123       </ReturnValue>
124       <Docs>
125         <value>To be added.</value>
126         <remarks>
127           <attribution license="cc4" from="Microsoft" modified="false" />
128           <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource" />, <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteMode" />, and <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource" /> properties to create a <see cref="T:System.Windows.Forms.ToolStripComboBox" /> that automatically completes input strings by comparing the prefix being entered to the prefixes of all strings in a maintained source. This is useful for <see cref="T:System.Windows.Forms.ToolStripComboBox" /> controls in which URLs, addresses, file names, or commands will be frequently entered.</para>
129           <para>The use of the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource" /> property is optional, but you must set the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource" /> property to <see cref="F:System.Windows.Forms.AutoCompleteSource.CustomSource" /> in order to use <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource" />.</para>
130           <para>You must use the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteMode" /> and <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource" /> properties together.</para>
131         </remarks>
132         <summary>
133           <attribution license="cc4" from="Microsoft" modified="false" />
134           <para>Gets or sets the custom string collection to use when the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource" /> property is set to <see cref="F:System.Windows.Forms.AutoCompleteSource.CustomSource" />.</para>
135         </summary>
136       </Docs>
137     </Member>
138     <Member MemberName="AutoCompleteMode">
139       <MemberSignature Language="C#" Value="public System.Windows.Forms.AutoCompleteMode AutoCompleteMode { set; get; }" />
140       <MemberType>Property</MemberType>
141       <AssemblyInfo>
142         <AssemblyVersion>2.0.0.0</AssemblyVersion>
143       </AssemblyInfo>
144       <Attributes>
145         <Attribute>
146           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName>
147         </Attribute>
148         <Attribute>
149           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.AutoCompleteMode.None)</AttributeName>
150         </Attribute>
151         <Attribute>
152           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
153         </Attribute>
154       </Attributes>
155       <ReturnValue>
156         <ReturnType>System.Windows.Forms.AutoCompleteMode</ReturnType>
157       </ReturnValue>
158       <Docs>
159         <value>To be added.</value>
160         <remarks>
161           <attribution license="cc4" from="Microsoft" modified="false" />
162           <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteMode" /> property to get or set the behavior of automatic completion.</para>
163         </remarks>
164         <summary>
165           <attribution license="cc4" from="Microsoft" modified="false" />
166           <para>Gets or sets a value that indicates the text completion behavior of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
167         </summary>
168       </Docs>
169     </Member>
170     <Member MemberName="AutoCompleteSource">
171       <MemberSignature Language="C#" Value="public System.Windows.Forms.AutoCompleteSource AutoCompleteSource { set; get; }" />
172       <MemberType>Property</MemberType>
173       <AssemblyInfo>
174         <AssemblyVersion>2.0.0.0</AssemblyVersion>
175       </AssemblyInfo>
176       <Attributes>
177         <Attribute>
178           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName>
179         </Attribute>
180         <Attribute>
181           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.AutoCompleteSource.None)</AttributeName>
182         </Attribute>
183         <Attribute>
184           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
185         </Attribute>
186       </Attributes>
187       <ReturnValue>
188         <ReturnType>System.Windows.Forms.AutoCompleteSource</ReturnType>
189       </ReturnValue>
190       <Docs>
191         <value>To be added.</value>
192         <remarks>
193           <attribution license="cc4" from="Microsoft" modified="false" />
194           <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.AutoCompleteSource" /> property to get or set automatic completion strings.</para>
195         </remarks>
196         <summary>
197           <attribution license="cc4" from="Microsoft" modified="false" />
198           <para>Gets or sets the source of complete strings used for automatic completion.</para>
199         </summary>
200       </Docs>
201     </Member>
202     <Member MemberName="BackgroundImage">
203       <MemberSignature Language="C#" Value="public override System.Drawing.Image BackgroundImage { set; get; }" />
204       <MemberType>Property</MemberType>
205       <AssemblyInfo>
206         <AssemblyVersion>2.0.0.0</AssemblyVersion>
207       </AssemblyInfo>
208       <Attributes>
209         <Attribute>
210           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
211         </Attribute>
212         <Attribute>
213           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
214         </Attribute>
215         <Attribute>
216           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
217         </Attribute>
218       </Attributes>
219       <ReturnValue>
220         <ReturnType>System.Drawing.Image</ReturnType>
221       </ReturnValue>
222       <Docs>
223         <value>To be added.</value>
224         <remarks>
225           <attribution license="cc4" from="Microsoft" modified="false" />
226           <para>This property is not relevant to this class.</para>
227         </remarks>
228         <summary>
229           <attribution license="cc4" from="Microsoft" modified="false" />
230           <para>This property is not relevant to this class.</para>
231         </summary>
232       </Docs>
233     </Member>
234     <Member MemberName="BackgroundImageLayout">
235       <MemberSignature Language="C#" Value="public override System.Windows.Forms.ImageLayout BackgroundImageLayout { set; get; }" />
236       <MemberType>Property</MemberType>
237       <AssemblyInfo>
238         <AssemblyVersion>2.0.0.0</AssemblyVersion>
239       </AssemblyInfo>
240       <Attributes>
241         <Attribute>
242           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
243         </Attribute>
244         <Attribute>
245           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
246         </Attribute>
247         <Attribute>
248           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
249         </Attribute>
250       </Attributes>
251       <ReturnValue>
252         <ReturnType>System.Windows.Forms.ImageLayout</ReturnType>
253       </ReturnValue>
254       <Docs>
255         <value>To be added.</value>
256         <remarks>
257           <attribution license="cc4" from="Microsoft" modified="false" />
258           <para>This property is not relevant to this class.</para>
259         </remarks>
260         <summary>
261           <attribution license="cc4" from="Microsoft" modified="false" />
262           <para>This property is not relevant to this class.</para>
263         </summary>
264       </Docs>
265     </Member>
266     <Member MemberName="BeginUpdate">
267       <MemberSignature Language="C#" Value="public void BeginUpdate ();" />
268       <MemberType>Method</MemberType>
269       <ReturnValue>
270         <ReturnType>System.Void</ReturnType>
271       </ReturnValue>
272       <Parameters />
273       <Docs>
274         <since version=".NET 2.0" />
275         <remarks>
276           <attribution license="cc4" from="Microsoft" modified="false" />
277           <para>This method prevents the control from painting until the <see cref="M:System.Windows.Forms.ToolStripComboBox.EndUpdate" /> method is called.</para>
278           <para>The preferred way to add items to the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> is to use the <see cref="M:System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItemCollection)" /> method through the <see cref="P:System.Windows.Forms.ToolStripComboBox.Items" /> property of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />. This enables you to add an array of items to the list at one time. However, if you want to add items one at a time using the <see cref="Overload:System.Windows.Forms.ToolStripItemCollection.Add" /> method, you can use the <see cref="M:System.Windows.Forms.ToolStripComboBox.BeginUpdate" /> method to prevent the control from repainting the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> each time an item is added to the list. Once you have completed the task of adding items to the list, call the <see cref="M:System.Windows.Forms.ToolStripComboBox.EndUpdate" /> method to enable the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> to repaint. This way of adding items can prevent flicker during the drawing of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> when a large number of items are being added to the list.</para>
279         </remarks>
280         <summary>
281           <attribution license="cc4" from="Microsoft" modified="false" />
282           <para>Maintains performance when items are added to the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> one at a time.</para>
283         </summary>
284       </Docs>
285       <AssemblyInfo>
286         <AssemblyVersion>2.0.0.0</AssemblyVersion>
287       </AssemblyInfo>
288     </Member>
289     <Member MemberName="ComboBox">
290       <MemberSignature Language="C#" Value="public System.Windows.Forms.ComboBox ComboBox { get; }" />
291       <MemberType>Property</MemberType>
292       <Attributes>
293         <Attribute>
294           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
295         </Attribute>
296         <Attribute>
297           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
298         </Attribute>
299       </Attributes>
300       <ReturnValue>
301         <ReturnType>System.Windows.Forms.ComboBox</ReturnType>
302       </ReturnValue>
303       <Docs>
304         <value>To be added.</value>
305         <since version=".NET 2.0" />
306         <remarks>
307           <attribution license="cc4" from="Microsoft" modified="false" />
308           <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.ComboBox" /> property to get <see cref="T:System.Windows.Forms.ComboBox" /> properties, methods, and events that have not been wrapped into <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
309         </remarks>
310         <summary>
311           <attribution license="cc4" from="Microsoft" modified="false" />
312           <para>Gets a <see cref="T:System.Windows.Forms.ComboBox" /> in which the user can enter text, along with a list from which the user can select.</para>
313         </summary>
314       </Docs>
315       <AssemblyInfo>
316         <AssemblyVersion>2.0.0.0</AssemblyVersion>
317       </AssemblyInfo>
318     </Member>
319     <Member MemberName="DefaultMargin">
320       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.Padding DefaultMargin { get; }" />
321       <MemberType>Property</MemberType>
322       <AssemblyInfo>
323         <AssemblyVersion>2.0.0.0</AssemblyVersion>
324       </AssemblyInfo>
325       <ReturnValue>
326         <ReturnType>System.Windows.Forms.Padding</ReturnType>
327       </ReturnValue>
328       <Docs>
329         <value>To be added.</value>
330         <remarks>
331           <attribution license="cc4" from="Microsoft" modified="false" />
332           <para>Override the <see cref="P:System.Windows.Forms.ToolStripComboBox.DefaultMargin" /> property to configure a default size for your <see cref="T:System.Windows.Forms.ToolStripComboBox" />. This is more efficient than setting the size in the constructor.</para>
333         </remarks>
334         <summary>
335           <attribution license="cc4" from="Microsoft" modified="false" />
336           <para>Gets the default spacing, in pixels, between the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> and an adjacent item.</para>
337         </summary>
338       </Docs>
339     </Member>
340     <Member MemberName="DefaultSize">
341       <MemberSignature Language="C#" Value="protected override System.Drawing.Size DefaultSize { get; }" />
342       <MemberType>Property</MemberType>
343       <ReturnValue>
344         <ReturnType>System.Drawing.Size</ReturnType>
345       </ReturnValue>
346       <Docs>
347         <value>To be added.</value>
348         <since version=".NET 2.0" />
349         <remarks>
350           <attribution license="cc4" from="Microsoft" modified="false" />
351           <block subset="none" type="note">
352             <para>In order to maintain better performance, you should not set the <see cref="T:System.Drawing.Size" /> of a <see cref="T:System.Windows.Forms.ToolStripComboBox" /> in its constructor. The preferred method is to override the <see cref="P:System.Windows.Forms.ToolStripComboBox.DefaultSize" /> property.</para>
353           </block>
354         </remarks>
355         <summary>
356           <attribution license="cc4" from="Microsoft" modified="false" />
357           <para>Gets the default size of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
358         </summary>
359       </Docs>
360       <AssemblyInfo>
361         <AssemblyVersion>2.0.0.0</AssemblyVersion>
362       </AssemblyInfo>
363     </Member>
364     <Member MemberName="DoubleClick">
365       <MemberSignature Language="C#" Value="public event EventHandler DoubleClick;" />
366       <MemberType>Event</MemberType>
367       <Attributes>
368         <Attribute>
369           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
370         </Attribute>
371         <Attribute>
372           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
373         </Attribute>
374       </Attributes>
375       <ReturnValue>
376         <ReturnType>System.EventHandler</ReturnType>
377       </ReturnValue>
378       <Docs>
379         <since version=".NET 2.0" />
380         <remarks>
381           <attribution license="cc4" from="Microsoft" modified="false" />
382           <para>This event is not relevant to this class.</para>
383         </remarks>
384         <summary>
385           <attribution license="cc4" from="Microsoft" modified="false" />
386           <para>This event is not relevant to this class.</para>
387         </summary>
388       </Docs>
389       <AssemblyInfo>
390         <AssemblyVersion>2.0.0.0</AssemblyVersion>
391       </AssemblyInfo>
392     </Member>
393     <Member MemberName="DropDown">
394       <MemberSignature Language="C#" Value="public event EventHandler DropDown;" />
395       <MemberType>Event</MemberType>
396       <ReturnValue>
397         <ReturnType>System.EventHandler</ReturnType>
398       </ReturnValue>
399       <Docs>
400         <since version=".NET 2.0" />
401         <remarks>
402           <attribution license="cc4" from="Microsoft" modified="false" />
403           <para>For more information about event-handler delegates, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
404         </remarks>
405         <summary>
406           <attribution license="cc4" from="Microsoft" modified="false" />
407           <para>Occurs when the drop-down portion of a <see cref="T:System.Windows.Forms.ToolStripComboBox" /> is shown.</para>
408         </summary>
409       </Docs>
410       <AssemblyInfo>
411         <AssemblyVersion>2.0.0.0</AssemblyVersion>
412       </AssemblyInfo>
413     </Member>
414     <Member MemberName="DropDownClosed">
415       <MemberSignature Language="C#" Value="public event EventHandler DropDownClosed;" />
416       <MemberType>Event</MemberType>
417       <ReturnValue>
418         <ReturnType>System.EventHandler</ReturnType>
419       </ReturnValue>
420       <Docs>
421         <since version=".NET 2.0" />
422         <remarks>
423           <attribution license="cc4" from="Microsoft" modified="false" />
424           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
425         </remarks>
426         <summary>
427           <attribution license="cc4" from="Microsoft" modified="false" />
428           <para>Occurs when the drop-down portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> has closed.</para>
429         </summary>
430       </Docs>
431       <AssemblyInfo>
432         <AssemblyVersion>2.0.0.0</AssemblyVersion>
433       </AssemblyInfo>
434     </Member>
435     <Member MemberName="DropDownHeight">
436       <MemberSignature Language="C#" Value="public int DropDownHeight { set; get; }" />
437       <MemberType>Property</MemberType>
438       <Attributes>
439         <Attribute>
440           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)</AttributeName>
441         </Attribute>
442         <Attribute>
443           <AttributeName>System.ComponentModel.DefaultValue(106)</AttributeName>
444         </Attribute>
445         <Attribute>
446           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
447         </Attribute>
448       </Attributes>
449       <ReturnValue>
450         <ReturnType>System.Int32</ReturnType>
451       </ReturnValue>
452       <Docs>
453         <value>To be added.</value>
454         <since version=".NET 2.0" />
455         <remarks>
456           <attribution license="cc4" from="Microsoft" modified="false" />
457           <para>Setting the <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownHeight" /> property resets the <see cref="P:System.Windows.Forms.ToolStripComboBox.IntegralHeight" /> property to false.</para>
458         </remarks>
459         <summary>
460           <attribution license="cc4" from="Microsoft" modified="false" />
461           <para>Gets or sets the height, in pixels, of the drop-down portion box of a <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
462         </summary>
463       </Docs>
464       <AssemblyInfo>
465         <AssemblyVersion>2.0.0.0</AssemblyVersion>
466       </AssemblyInfo>
467     </Member>
468     <Member MemberName="DropDownStyle">
469       <MemberSignature Language="C#" Value="public System.Windows.Forms.ComboBoxStyle DropDownStyle { set; get; }" />
470       <MemberType>Property</MemberType>
471       <Attributes>
472         <Attribute>
473           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName>
474         </Attribute>
475         <Attribute>
476           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.ComboBoxStyle.DropDown)</AttributeName>
477         </Attribute>
478       </Attributes>
479       <ReturnValue>
480         <ReturnType>System.Windows.Forms.ComboBoxStyle</ReturnType>
481       </ReturnValue>
482       <Docs>
483         <value>To be added.</value>
484         <since version=".NET 2.0" />
485         <remarks>
486           <attribution license="cc4" from="Microsoft" modified="false" />
487           <para>The <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownStyle" /> property controls the interface that is presented to the user. You can enter a value that allows for a simple drop-down list box, where the list always displays, a drop-down list box, where the text portion is not editable and you must select an arrow to view the drop-down, or the default drop-down list box, where the text portion is editable and the user must press the arrow key to view the list. To always display a list that the user cannot edit, use a <see cref="T:System.Windows.Forms.ListBox" /> control.</para>
488         </remarks>
489         <summary>
490           <attribution license="cc4" from="Microsoft" modified="false" />
491           <para>Gets or sets a value specifying the style of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
492         </summary>
493       </Docs>
494       <AssemblyInfo>
495         <AssemblyVersion>2.0.0.0</AssemblyVersion>
496       </AssemblyInfo>
497     </Member>
498     <Member MemberName="DropDownStyleChanged">
499       <MemberSignature Language="C#" Value="public event EventHandler DropDownStyleChanged;" />
500       <MemberType>Event</MemberType>
501       <ReturnValue>
502         <ReturnType>System.EventHandler</ReturnType>
503       </ReturnValue>
504       <Docs>
505         <since version=".NET 2.0" />
506         <remarks>
507           <attribution license="cc4" from="Microsoft" modified="false" />
508           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
509         </remarks>
510         <summary>
511           <attribution license="cc4" from="Microsoft" modified="false" />
512           <para>Occurs when the <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownStyle" /> property has changed.</para>
513         </summary>
514       </Docs>
515       <AssemblyInfo>
516         <AssemblyVersion>2.0.0.0</AssemblyVersion>
517       </AssemblyInfo>
518     </Member>
519     <Member MemberName="DropDownWidth">
520       <MemberSignature Language="C#" Value="public int DropDownWidth { set; get; }" />
521       <MemberType>Property</MemberType>
522       <ReturnValue>
523         <ReturnType>System.Int32</ReturnType>
524       </ReturnValue>
525       <Docs>
526         <value>To be added.</value>
527         <since version=".NET 2.0" />
528         <remarks>
529           <attribution license="cc4" from="Microsoft" modified="false" />
530           <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownWidth" /> property to get or set the width of the drop-down portion of a <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
531         </remarks>
532         <summary>
533           <attribution license="cc4" from="Microsoft" modified="false" />
534           <para>Gets or sets the width, in pixels, of the drop-down portion of a <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
535         </summary>
536       </Docs>
537       <AssemblyInfo>
538         <AssemblyVersion>2.0.0.0</AssemblyVersion>
539       </AssemblyInfo>
540     </Member>
541     <Member MemberName="DroppedDown">
542       <MemberSignature Language="C#" Value="public bool DroppedDown { set; get; }" />
543       <MemberType>Property</MemberType>
544       <Attributes>
545         <Attribute>
546           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
547         </Attribute>
548         <Attribute>
549           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
550         </Attribute>
551       </Attributes>
552       <ReturnValue>
553         <ReturnType>System.Boolean</ReturnType>
554       </ReturnValue>
555       <Docs>
556         <value>To be added.</value>
557         <remarks>To be added.</remarks>
558         <since version=".NET 2.0" />
559         <summary>
560           <attribution license="cc4" from="Microsoft" modified="false" />
561           <para>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> currently displays its drop-down portion.</para>
562         </summary>
563       </Docs>
564       <AssemblyInfo>
565         <AssemblyVersion>2.0.0.0</AssemblyVersion>
566       </AssemblyInfo>
567     </Member>
568     <Member MemberName="EndUpdate">
569       <MemberSignature Language="C#" Value="public void EndUpdate ();" />
570       <MemberType>Method</MemberType>
571       <ReturnValue>
572         <ReturnType>System.Void</ReturnType>
573       </ReturnValue>
574       <Parameters />
575       <Docs>
576         <since version=".NET 2.0" />
577         <remarks>
578           <attribution license="cc4" from="Microsoft" modified="false" />
579           <para>The preferred way to add items to the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> is to use the <see cref="M:System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem[])" /> method through the <see cref="P:System.Windows.Forms.ToolStripComboBox.Items" /> property of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />. This enables you to add an array of items to the list at one time. However, if you want to add items one at a time using the <see cref="Overload:System.Windows.Forms.ToolStripItemCollection.Add" /> method, you can use the <see cref="M:System.Windows.Forms.ToolStripComboBox.BeginUpdate" /> method to prevent the control from repainting the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> each time an item is added to the list. Once you have completed the task of adding items to the list, call the <see cref="M:System.Windows.Forms.ToolStripComboBox.EndUpdate" /> method to enable the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> to repaint. This way of adding items can prevent flicker during the drawing of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> when a large number of items are being added to the list.</para>
580         </remarks>
581         <summary>
582           <attribution license="cc4" from="Microsoft" modified="false" />
583           <para>Resumes painting the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> control after painting is suspended by the <see cref="M:System.Windows.Forms.ToolStripComboBox.BeginUpdate" /> method.</para>
584         </summary>
585       </Docs>
586       <AssemblyInfo>
587         <AssemblyVersion>2.0.0.0</AssemblyVersion>
588       </AssemblyInfo>
589     </Member>
590     <Member MemberName="FindString">
591       <MemberSignature Language="C#" Value="public int FindString (string s);" />
592       <MemberType>Method</MemberType>
593       <ReturnValue>
594         <ReturnType>System.Int32</ReturnType>
595       </ReturnValue>
596       <Parameters>
597         <Parameter Name="s" Type="System.String" />
598       </Parameters>
599       <Docs>
600         <since version=".NET 2.0" />
601         <remarks>
602           <attribution license="cc4" from="Microsoft" modified="false" />
603           <para>The search performed by this method is not case-sensitive. The <paramref name="s" /> parameter is a substring to compare against the text associated with the items in the combo box list. The search performs a partial match starting from the beginning of the text, and returning the first item in the list that matches the specified substring. You can then perform tasks, such as removing the item that contains the search text or changing the item's text. Once you have found the specified text, if you want to search for other instances of the text in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />, use <see cref="M:System.Windows.Forms.ToolStripComboBox.FindString(System.String,System.Int32)" /> method to specify a starting index within the <see cref="T:System.Windows.Forms.ToolStripComboBox" />. If you want to perform a search for an exact word match instead of a partial match, use the <see cref="M:System.Windows.Forms.ToolStripComboBox.FindStringExact(System.String)" /> method.</para>
604         </remarks>
605         <summary>
606           <attribution license="cc4" from="Microsoft" modified="false" />
607           <para>Finds the first item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> that starts with the specified string.</para>
608         </summary>
609         <returns>
610           <attribution license="cc4" from="Microsoft" modified="false" />
611           <para>The zero-based index of the first item found; returns -1 if no match is found.</para>
612         </returns>
613         <param name="s">
614           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to search for.</param>
615       </Docs>
616       <AssemblyInfo>
617         <AssemblyVersion>2.0.0.0</AssemblyVersion>
618       </AssemblyInfo>
619     </Member>
620     <Member MemberName="FindString">
621       <MemberSignature Language="C#" Value="public int FindString (string s, int startIndex);" />
622       <MemberType>Method</MemberType>
623       <ReturnValue>
624         <ReturnType>System.Int32</ReturnType>
625       </ReturnValue>
626       <Parameters>
627         <Parameter Name="s" Type="System.String" />
628         <Parameter Name="startIndex" Type="System.Int32" />
629       </Parameters>
630       <Docs>
631         <since version=".NET 2.0" />
632         <remarks>
633           <attribution license="cc4" from="Microsoft" modified="false" />
634           <para>The search performed by this method is not case-sensitive. The <paramref name="s" /> parameter is a substring to compare against the text associated with the items in the combo box list. The search performs a partial match starting from the beginning of the text at the specified index, and returns the first item in the list that matches the specified substring. You can then perform tasks, such as removing the item that contains the search text or changing the item's text. Once you have found the specified text, if you want to search for other instances of the text in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />, use this method to specify a starting index within the <see cref="T:System.Windows.Forms.ToolStripComboBox" />. If you want to perform a search for an exact word match instead of a partial match, use the <see cref="M:System.Windows.Forms.ToolStripComboBox.FindStringExact(System.String)" /> method.</para>
635         </remarks>
636         <summary>
637           <attribution license="cc4" from="Microsoft" modified="false" />
638           <para>Finds the first item after the given index which starts with the given string. </para>
639         </summary>
640         <returns>
641           <attribution license="cc4" from="Microsoft" modified="false" />
642           <para>The zero-based index of the first item found; returns -1 if no match is found.</para>
643         </returns>
644         <param name="s">
645           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to search for.</param>
646         <param name="startIndex">
647           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
648       </Docs>
649       <AssemblyInfo>
650         <AssemblyVersion>2.0.0.0</AssemblyVersion>
651       </AssemblyInfo>
652     </Member>
653     <Member MemberName="FindStringExact">
654       <MemberSignature Language="C#" Value="public int FindStringExact (string s);" />
655       <MemberType>Method</MemberType>
656       <ReturnValue>
657         <ReturnType>System.Int32</ReturnType>
658       </ReturnValue>
659       <Parameters>
660         <Parameter Name="s" Type="System.String" />
661       </Parameters>
662       <Docs>
663         <since version=".NET 2.0" />
664         <remarks>
665           <attribution license="cc4" from="Microsoft" modified="false" />
666           <para>The search performed by this method is not case-sensitive. The <paramref name="s" /> parameter is a substring to compare against the text associated with the items in the combo box list. The search performs a partial match starting from the beginning of the text at the specified index, and returns the first item in the list that matches the specified substring. You can then perform tasks, such as removing the item that contains the search text or changing the item's text. Once you have found the specified text, if you want to search for other instances of the text in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />, use <see cref="M:System.Windows.Forms.ToolStripComboBox.FindString(System.String,System.Int32)" /> method to specify a starting index within the <see cref="T:System.Windows.Forms.ToolStripComboBox" />. If you want to search for a partial match instead of the exact word, use the <see cref="M:System.Windows.Forms.ToolStripComboBox.FindString(System.String)" /> method.</para>
667         </remarks>
668         <summary>
669           <attribution license="cc4" from="Microsoft" modified="false" />
670           <para>Finds the first item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> that exactly matches the specified string.</para>
671         </summary>
672         <returns>
673           <attribution license="cc4" from="Microsoft" modified="false" />
674           <para>The zero-based index of the first item found; -1 if no match is found.</para>
675         </returns>
676         <param name="s">
677           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to search for.</param>
678       </Docs>
679       <AssemblyInfo>
680         <AssemblyVersion>2.0.0.0</AssemblyVersion>
681       </AssemblyInfo>
682     </Member>
683     <Member MemberName="FindStringExact">
684       <MemberSignature Language="C#" Value="public int FindStringExact (string s, int startIndex);" />
685       <MemberType>Method</MemberType>
686       <ReturnValue>
687         <ReturnType>System.Int32</ReturnType>
688       </ReturnValue>
689       <Parameters>
690         <Parameter Name="s" Type="System.String" />
691         <Parameter Name="startIndex" Type="System.Int32" />
692       </Parameters>
693       <Docs>
694         <since version=".NET 2.0" />
695         <remarks>
696           <attribution license="cc4" from="Microsoft" modified="false" />
697           <para>The search performed by this method is not case-sensitive. The <paramref name="s" /> parameter is a substring to compare against the text associated with the items in the combo box list. The search performs a partial match starting from the beginning of the text at the specified index, and returns the first item in the list that matches the specified substring. You can then perform tasks, such as removing the item that contains the search text or changing the item's text. Once you have found the specified text, if you want to search for other instances of exact text in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />, use this method to specify a starting index within the <see cref="T:System.Windows.Forms.ToolStripComboBox" />. If you want to search for a partial match instead of the exact word, use the <see cref="M:System.Windows.Forms.ToolStripComboBox.FindString(System.String,System.Int32)" /> method.</para>
698         </remarks>
699         <summary>
700           <attribution license="cc4" from="Microsoft" modified="false" />
701           <para>Finds the first item after the specified index that exactly matches the specified string.</para>
702         </summary>
703         <returns>
704           <attribution license="cc4" from="Microsoft" modified="false" />
705           <para>The zero-based index of the first item found; returns -1 if no match is found.</para>
706         </returns>
707         <param name="s">
708           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.String" /> to search for.</param>
709         <param name="startIndex">
710           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the item before the first item to be searched. Set to -1 to search from the beginning of the control.</param>
711       </Docs>
712       <AssemblyInfo>
713         <AssemblyVersion>2.0.0.0</AssemblyVersion>
714       </AssemblyInfo>
715     </Member>
716     <Member MemberName="FlatStyle">
717       <MemberSignature Language="C#" Value="public System.Windows.Forms.FlatStyle FlatStyle { set; get; }" />
718       <MemberType>Property</MemberType>
719       <AssemblyInfo>
720         <AssemblyVersion>2.0.0.0</AssemblyVersion>
721       </AssemblyInfo>
722       <Attributes>
723         <Attribute>
724           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.FlatStyle.Popup)</AttributeName>
725         </Attribute>
726         <Attribute>
727           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
728         </Attribute>
729       </Attributes>
730       <ReturnValue>
731         <ReturnType>System.Windows.Forms.FlatStyle</ReturnType>
732       </ReturnValue>
733       <Docs>
734         <value>To be added.</value>
735         <remarks>
736           <attribution license="cc4" from="Microsoft" modified="false" />
737           <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.FlatStyle" /> property to get or set the display of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
738         </remarks>
739         <summary>
740           <attribution license="cc4" from="Microsoft" modified="false" />
741           <para>Gets or sets the appearance of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
742         </summary>
743       </Docs>
744     </Member>
745     <Member MemberName="GetItemHeight">
746       <MemberSignature Language="C#" Value="public int GetItemHeight (int index);" />
747       <MemberType>Method</MemberType>
748       <ReturnValue>
749         <ReturnType>System.Int32</ReturnType>
750       </ReturnValue>
751       <Parameters>
752         <Parameter Name="index" Type="System.Int32" />
753       </Parameters>
754       <Docs>
755         <remarks>To be added.</remarks>
756         <since version=".NET 2.0" />
757         <summary>
758           <attribution license="cc4" from="Microsoft" modified="false" />
759           <para>Returns the height, in pixels, of an item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
760         </summary>
761         <returns>
762           <attribution license="cc4" from="Microsoft" modified="false" />
763           <para>The height, in pixels, of the item at the specified index.</para>
764         </returns>
765         <param name="index">
766           <attribution license="cc4" from="Microsoft" modified="false" />The index of the item to return the height of.</param>
767       </Docs>
768       <AssemblyInfo>
769         <AssemblyVersion>2.0.0.0</AssemblyVersion>
770       </AssemblyInfo>
771     </Member>
772     <Member MemberName="GetPreferredSize">
773       <MemberSignature Language="C#" Value="public override System.Drawing.Size GetPreferredSize (System.Drawing.Size constrainingSize);" />
774       <MemberType>Method</MemberType>
775       <ReturnValue>
776         <ReturnType>System.Drawing.Size</ReturnType>
777       </ReturnValue>
778       <Parameters>
779         <Parameter Name="constrainingSize" Type="System.Drawing.Size" />
780       </Parameters>
781       <Docs>
782         <remarks>To be added.</remarks>
783         <since version=".NET 2.0" />
784         <summary>
785           <attribution license="cc4" from="Microsoft" modified="false" />
786           <para>Retrieves the size of a rectangular area into which a control can be fitted.</para>
787         </summary>
788         <returns>
789           <attribution license="cc4" from="Microsoft" modified="false" />
790           <para>An ordered pair of type <see cref="T:System.Drawing.Size" /> representing the width and height of a rectangle.</para>
791         </returns>
792         <param name="constrainingSize">
793           <attribution license="cc4" from="Microsoft" modified="false" />The custom-sized area for a control. </param>
794       </Docs>
795       <AssemblyInfo>
796         <AssemblyVersion>2.0.0.0</AssemblyVersion>
797       </AssemblyInfo>
798     </Member>
799     <Member MemberName="IntegralHeight">
800       <MemberSignature Language="C#" Value="public bool IntegralHeight { set; get; }" />
801       <MemberType>Property</MemberType>
802       <Attributes>
803         <Attribute>
804           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
805         </Attribute>
806         <Attribute>
807           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
808         </Attribute>
809       </Attributes>
810       <ReturnValue>
811         <ReturnType>System.Boolean</ReturnType>
812       </ReturnValue>
813       <Docs>
814         <value>To be added.</value>
815         <since version=".NET 2.0" />
816         <remarks>
817           <attribution license="cc4" from="Microsoft" modified="false" />
818           <para>When this property is set to true, the control automatically resizes to ensure that an item is not partially displayed. If you want to maintain the original size of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> based on the space requirements of your form, set this property to false. If the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> does not contain any items, this property has no effect.</para>
819           <para>Setting the <see cref="P:System.Windows.Forms.ToolStripComboBox.DropDownHeight" /> property resets the <see cref="P:System.Windows.Forms.ToolStripComboBox.IntegralHeight" /> property to false.</para>
820         </remarks>
821         <summary>
822           <attribution license="cc4" from="Microsoft" modified="false" />
823           <para>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> should resize to avoid showing partial items.</para>
824         </summary>
825       </Docs>
826       <AssemblyInfo>
827         <AssemblyVersion>2.0.0.0</AssemblyVersion>
828       </AssemblyInfo>
829     </Member>
830     <Member MemberName="Items">
831       <MemberSignature Language="C#" Value="public System.Windows.Forms.ComboBox.ObjectCollection Items { get; }" />
832       <MemberType>Property</MemberType>
833       <Attributes>
834         <Attribute>
835           <AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
836         </Attribute>
837         <Attribute>
838           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
839         </Attribute>
840         <Attribute>
841           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
842         </Attribute>
843       </Attributes>
844       <ReturnValue>
845         <ReturnType>System.Windows.Forms.ComboBox+ObjectCollection</ReturnType>
846       </ReturnValue>
847       <Docs>
848         <value>To be added.</value>
849         <remarks>To be added.</remarks>
850         <since version=".NET 2.0" />
851         <summary>
852           <attribution license="cc4" from="Microsoft" modified="false" />
853           <para>Gets a collection of the items contained in this <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
854         </summary>
855       </Docs>
856       <AssemblyInfo>
857         <AssemblyVersion>2.0.0.0</AssemblyVersion>
858       </AssemblyInfo>
859     </Member>
860     <Member MemberName="MaxDropDownItems">
861       <MemberSignature Language="C#" Value="public int MaxDropDownItems { set; get; }" />
862       <MemberType>Property</MemberType>
863       <Attributes>
864         <Attribute>
865           <AttributeName>System.ComponentModel.DefaultValue(8)</AttributeName>
866         </Attribute>
867         <Attribute>
868           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
869         </Attribute>
870       </Attributes>
871       <ReturnValue>
872         <ReturnType>System.Int32</ReturnType>
873       </ReturnValue>
874       <Docs>
875         <value>To be added.</value>
876         <since version=".NET 2.0" />
877         <remarks>
878           <attribution license="cc4" from="Microsoft" modified="false" />
879           <para>Use the <see cref="P:System.Windows.Forms.ToolStripComboBox.MaxDropDownItems" /> property to get or set the maximum number of items to show in the drop-down portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
880         </remarks>
881         <summary>
882           <attribution license="cc4" from="Microsoft" modified="false" />
883           <para>Gets or sets the maximum number of items to be shown in the drop-down portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
884         </summary>
885       </Docs>
886       <AssemblyInfo>
887         <AssemblyVersion>2.0.0.0</AssemblyVersion>
888       </AssemblyInfo>
889     </Member>
890     <Member MemberName="MaxLength">
891       <MemberSignature Language="C#" Value="public int MaxLength { set; get; }" />
892       <MemberType>Property</MemberType>
893       <Attributes>
894         <Attribute>
895           <AttributeName>System.ComponentModel.DefaultValue(0)</AttributeName>
896         </Attribute>
897         <Attribute>
898           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
899         </Attribute>
900       </Attributes>
901       <ReturnValue>
902         <ReturnType>System.Int32</ReturnType>
903       </ReturnValue>
904       <Docs>
905         <value>To be added.</value>
906         <remarks>To be added.</remarks>
907         <since version=".NET 2.0" />
908         <summary>
909           <attribution license="cc4" from="Microsoft" modified="false" />
910           <para>Gets or sets the maximum number of characters allowed in the editable portion of a combo box.</para>
911         </summary>
912       </Docs>
913       <AssemblyInfo>
914         <AssemblyVersion>2.0.0.0</AssemblyVersion>
915       </AssemblyInfo>
916     </Member>
917     <Member MemberName="OnDropDown">
918       <MemberSignature Language="C#" Value="protected virtual void OnDropDown (EventArgs e);" />
919       <MemberType>Method</MemberType>
920       <ReturnValue>
921         <ReturnType>System.Void</ReturnType>
922       </ReturnValue>
923       <Parameters>
924         <Parameter Name="e" Type="System.EventArgs" />
925       </Parameters>
926       <Docs>
927         <since version=".NET 2.0" />
928         <remarks>
929           <attribution license="cc4" from="Microsoft" modified="false" />
930           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
931           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnDropDown(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
932         </remarks>
933         <summary>
934           <attribution license="cc4" from="Microsoft" modified="false" />
935           <para>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.DropDown" /> event. </para>
936         </summary>
937         <param name="e">
938           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
939       </Docs>
940       <AssemblyInfo>
941         <AssemblyVersion>2.0.0.0</AssemblyVersion>
942       </AssemblyInfo>
943     </Member>
944     <Member MemberName="OnDropDownClosed">
945       <MemberSignature Language="C#" Value="protected virtual void OnDropDownClosed (EventArgs e);" />
946       <MemberType>Method</MemberType>
947       <ReturnValue>
948         <ReturnType>System.Void</ReturnType>
949       </ReturnValue>
950       <Parameters>
951         <Parameter Name="e" Type="System.EventArgs" />
952       </Parameters>
953       <Docs>
954         <since version=".NET 2.0" />
955         <remarks>
956           <attribution license="cc4" from="Microsoft" modified="false" />
957           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
958           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnDropDownClosed(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
959         </remarks>
960         <summary>
961           <attribution license="cc4" from="Microsoft" modified="false" />
962           <para>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.DropDownClosed" /> event.</para>
963         </summary>
964         <param name="e">
965           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
966       </Docs>
967       <AssemblyInfo>
968         <AssemblyVersion>2.0.0.0</AssemblyVersion>
969       </AssemblyInfo>
970     </Member>
971     <Member MemberName="OnDropDownStyleChanged">
972       <MemberSignature Language="C#" Value="protected virtual void OnDropDownStyleChanged (EventArgs e);" />
973       <MemberType>Method</MemberType>
974       <ReturnValue>
975         <ReturnType>System.Void</ReturnType>
976       </ReturnValue>
977       <Parameters>
978         <Parameter Name="e" Type="System.EventArgs" />
979       </Parameters>
980       <Docs>
981         <since version=".NET 2.0" />
982         <remarks>
983           <attribution license="cc4" from="Microsoft" modified="false" />
984           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
985           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnDropDownStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
986         </remarks>
987         <summary>
988           <attribution license="cc4" from="Microsoft" modified="false" />
989           <para>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.DropDownStyleChanged" /> event.</para>
990         </summary>
991         <param name="e">
992           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
993       </Docs>
994       <AssemblyInfo>
995         <AssemblyVersion>2.0.0.0</AssemblyVersion>
996       </AssemblyInfo>
997     </Member>
998     <Member MemberName="OnSelectedIndexChanged">
999       <MemberSignature Language="C#" Value="protected virtual void OnSelectedIndexChanged (EventArgs e);" />
1000       <MemberType>Method</MemberType>
1001       <ReturnValue>
1002         <ReturnType>System.Void</ReturnType>
1003       </ReturnValue>
1004       <Parameters>
1005         <Parameter Name="e" Type="System.EventArgs" />
1006       </Parameters>
1007       <Docs>
1008         <since version=".NET 2.0" />
1009         <remarks>
1010           <attribution license="cc4" from="Microsoft" modified="false" />
1011           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1012           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnSelectedIndexChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1013         </remarks>
1014         <summary>
1015           <attribution license="cc4" from="Microsoft" modified="false" />
1016           <para>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged" /> event.</para>
1017         </summary>
1018         <param name="e">
1019           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
1020       </Docs>
1021       <AssemblyInfo>
1022         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1023       </AssemblyInfo>
1024     </Member>
1025     <Member MemberName="OnSelectionChangeCommitted">
1026       <MemberSignature Language="C#" Value="protected virtual void OnSelectionChangeCommitted (EventArgs e);" />
1027       <MemberType>Method</MemberType>
1028       <ReturnValue>
1029         <ReturnType>System.Void</ReturnType>
1030       </ReturnValue>
1031       <Parameters>
1032         <Parameter Name="e" Type="System.EventArgs" />
1033       </Parameters>
1034       <Docs>
1035         <since version=".NET 2.0" />
1036         <remarks>
1037           <attribution license="cc4" from="Microsoft" modified="false" />
1038           <para>
1039             <see cref="E:System.Windows.Forms.ComboBox.SelectionChangeCommitted" /> is raised only when the user changes the combo box selection. Do not use <see cref="E:System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged" /> or <see cref="E:System.Windows.Forms.ListControl.SelectedValueChanged" /> to capture user changes, because those events are also raised when the selection changes programmatically. This event is also raised when you set <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex" />.</para>
1040           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
1041           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnSelectionChangeCommitted(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1042         </remarks>
1043         <summary>
1044           <attribution license="cc4" from="Microsoft" modified="false" />
1045           <para>Raises the <see cref="E:System.Windows.Forms.ComboBox.SelectionChangeCommitted" /> event.</para>
1046         </summary>
1047         <param name="e">
1048           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
1049       </Docs>
1050       <AssemblyInfo>
1051         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1052       </AssemblyInfo>
1053     </Member>
1054     <Member MemberName="OnSubscribeControlEvents">
1055       <MemberSignature Language="C#" Value="protected override void OnSubscribeControlEvents (System.Windows.Forms.Control control);" />
1056       <MemberType>Method</MemberType>
1057       <ReturnValue>
1058         <ReturnType>System.Void</ReturnType>
1059       </ReturnValue>
1060       <Parameters>
1061         <Parameter Name="control" Type="System.Windows.Forms.Control" />
1062       </Parameters>
1063       <Docs>
1064         <since version=".NET 2.0" />
1065         <remarks>
1066           <attribution license="cc4" from="Microsoft" modified="false" />
1067           <para>Override the <see cref="M:System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control)" /> method to add or prevent the synchronizing of control events.</para>
1068           <para>If you override and hook up events here, unhook them by using the <see cref="M:System.Windows.Forms.ToolStripComboBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control)" /> method.</para>
1069           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1070           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1071         </remarks>
1072         <summary>
1073           <attribution license="cc4" from="Microsoft" modified="false" />
1074           <para>Subscribes events from the specified control.</para>
1075         </summary>
1076         <param name="control">
1077           <attribution license="cc4" from="Microsoft" modified="false" />The control from which to subscribe events.</param>
1078       </Docs>
1079       <AssemblyInfo>
1080         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1081       </AssemblyInfo>
1082     </Member>
1083     <Member MemberName="OnTextUpdate">
1084       <MemberSignature Language="C#" Value="protected virtual void OnTextUpdate (EventArgs e);" />
1085       <MemberType>Method</MemberType>
1086       <ReturnValue>
1087         <ReturnType>System.Void</ReturnType>
1088       </ReturnValue>
1089       <Parameters>
1090         <Parameter Name="e" Type="System.EventArgs" />
1091       </Parameters>
1092       <Docs>
1093         <since version=".NET 2.0" />
1094         <remarks>
1095           <attribution license="cc4" from="Microsoft" modified="false" />
1096           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1097           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnTextUpdate(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1098         </remarks>
1099         <summary>
1100           <attribution license="cc4" from="Microsoft" modified="false" />
1101           <para>Raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.TextUpdate" /> event.</para>
1102         </summary>
1103         <param name="e">
1104           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
1105       </Docs>
1106       <AssemblyInfo>
1107         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1108       </AssemblyInfo>
1109     </Member>
1110     <Member MemberName="OnUnsubscribeControlEvents">
1111       <MemberSignature Language="C#" Value="protected override void OnUnsubscribeControlEvents (System.Windows.Forms.Control control);" />
1112       <MemberType>Method</MemberType>
1113       <ReturnValue>
1114         <ReturnType>System.Void</ReturnType>
1115       </ReturnValue>
1116       <Parameters>
1117         <Parameter Name="control" Type="System.Windows.Forms.Control" />
1118       </Parameters>
1119       <Docs>
1120         <since version=".NET 2.0" />
1121         <remarks>
1122           <attribution license="cc4" from="Microsoft" modified="false" />
1123           <para>Override the <see cref="M:System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control)" /> method to unsubscribe events subscribed in <see cref="M:System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control)" />.</para>
1124           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
1125           <para>The <see cref="M:System.Windows.Forms.ToolStripComboBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
1126         </remarks>
1127         <summary>
1128           <attribution license="cc4" from="Microsoft" modified="false" />
1129           <para>Unsubscribes events from the specified control.</para>
1130         </summary>
1131         <param name="control">
1132           <attribution license="cc4" from="Microsoft" modified="false" />The control from which to unsubscribe events.</param>
1133       </Docs>
1134       <AssemblyInfo>
1135         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1136       </AssemblyInfo>
1137     </Member>
1138     <Member MemberName="Select">
1139       <MemberSignature Language="C#" Value="public void Select (int start, int length);" />
1140       <MemberType>Method</MemberType>
1141       <ReturnValue>
1142         <ReturnType>System.Void</ReturnType>
1143       </ReturnValue>
1144       <Parameters>
1145         <Parameter Name="start" Type="System.Int32" />
1146         <Parameter Name="length" Type="System.Int32" />
1147       </Parameters>
1148       <Docs>
1149         <since version=".NET 2.0" />
1150         <remarks>
1151           <attribution license="cc4" from="Microsoft" modified="false" />
1152           <para>If you want to set the start position to the first character in the control's text, set the <paramref name="start" /> parameter to zero. You can use this method to select a substring of text, such as when searching through the text of the control and replacing information.</para>
1153         </remarks>
1154         <summary>
1155           <attribution license="cc4" from="Microsoft" modified="false" />
1156           <para>Selects a range of text in the editable portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1157         </summary>
1158         <param name="start">
1159           <attribution license="cc4" from="Microsoft" modified="false" />The position of the first character in the current text selection within the text box.</param>
1160         <param name="length">
1161           <attribution license="cc4" from="Microsoft" modified="false" />The number of characters to select.</param>
1162       </Docs>
1163       <AssemblyInfo>
1164         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1165       </AssemblyInfo>
1166     </Member>
1167     <Member MemberName="SelectAll">
1168       <MemberSignature Language="C#" Value="public void SelectAll ();" />
1169       <MemberType>Method</MemberType>
1170       <ReturnValue>
1171         <ReturnType>System.Void</ReturnType>
1172       </ReturnValue>
1173       <Parameters />
1174       <Docs>
1175         <remarks>To be added.</remarks>
1176         <since version=".NET 2.0" />
1177         <summary>
1178           <attribution license="cc4" from="Microsoft" modified="false" />
1179           <para>Selects all the text in the editable portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1180         </summary>
1181       </Docs>
1182       <AssemblyInfo>
1183         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1184       </AssemblyInfo>
1185     </Member>
1186     <Member MemberName="SelectedIndex">
1187       <MemberSignature Language="C#" Value="public int SelectedIndex { set; get; }" />
1188       <MemberType>Property</MemberType>
1189       <Attributes>
1190         <Attribute>
1191           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1192         </Attribute>
1193         <Attribute>
1194           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1195         </Attribute>
1196       </Attributes>
1197       <ReturnValue>
1198         <ReturnType>System.Int32</ReturnType>
1199       </ReturnValue>
1200       <Docs>
1201         <value>To be added.</value>
1202         <since version=".NET 2.0" />
1203         <remarks>
1204           <attribution license="cc4" from="Microsoft" modified="false" />
1205           <para>This property indicates the zero-based index of the currently selected item in the combo box list. Setting a new index raises the <see cref="E:System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged" /> event.</para>
1206           <para>Note   To deselect the currently selected item, set the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex" /> to -1.</para>
1207         </remarks>
1208         <summary>
1209           <attribution license="cc4" from="Microsoft" modified="false" />
1210           <para>Gets or sets the index specifying the currently selected item.</para>
1211         </summary>
1212       </Docs>
1213       <AssemblyInfo>
1214         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1215       </AssemblyInfo>
1216     </Member>
1217     <Member MemberName="SelectedIndexChanged">
1218       <MemberSignature Language="C#" Value="public event EventHandler SelectedIndexChanged;" />
1219       <MemberType>Event</MemberType>
1220       <ReturnValue>
1221         <ReturnType>System.EventHandler</ReturnType>
1222       </ReturnValue>
1223       <Docs>
1224         <since version=".NET 2.0" />
1225         <remarks>
1226           <attribution license="cc4" from="Microsoft" modified="false" />
1227           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1228         </remarks>
1229         <summary>
1230           <attribution license="cc4" from="Microsoft" modified="false" />
1231           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex" /> property has changed.</para>
1232         </summary>
1233       </Docs>
1234       <AssemblyInfo>
1235         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1236       </AssemblyInfo>
1237     </Member>
1238     <Member MemberName="SelectedItem">
1239       <MemberSignature Language="C#" Value="public object SelectedItem { set; get; }" />
1240       <MemberType>Property</MemberType>
1241       <Attributes>
1242         <Attribute>
1243           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1244         </Attribute>
1245         <Attribute>
1246           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1247         </Attribute>
1248         <Attribute>
1249           <AttributeName>System.ComponentModel.Bindable(true)</AttributeName>
1250         </Attribute>
1251       </Attributes>
1252       <ReturnValue>
1253         <ReturnType>System.Object</ReturnType>
1254       </ReturnValue>
1255       <Docs>
1256         <value>To be added.</value>
1257         <since version=".NET 2.0" />
1258         <remarks>
1259           <attribution license="cc4" from="Microsoft" modified="false" />
1260           <para>When you set the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedItem" /> property to an object, the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> attempts to make that object the currently selected one in the list. If the object is found in the list, it is displayed in the edit portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> and the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex" /> property is set to the corresponding index. If the object does not exist in the list, the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectedIndex" /> property is left at its current value.</para>
1261         </remarks>
1262         <summary>
1263           <attribution license="cc4" from="Microsoft" modified="false" />
1264           <para>Gets or sets currently selected item in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1265         </summary>
1266       </Docs>
1267       <AssemblyInfo>
1268         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1269       </AssemblyInfo>
1270     </Member>
1271     <Member MemberName="SelectedText">
1272       <MemberSignature Language="C#" Value="public string SelectedText { set; get; }" />
1273       <MemberType>Property</MemberType>
1274       <Attributes>
1275         <Attribute>
1276           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1277         </Attribute>
1278         <Attribute>
1279           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1280         </Attribute>
1281       </Attributes>
1282       <ReturnValue>
1283         <ReturnType>System.String</ReturnType>
1284       </ReturnValue>
1285       <Docs>
1286         <value>To be added.</value>
1287         <since version=".NET 2.0" />
1288         <remarks>
1289           <attribution license="cc4" from="Microsoft" modified="false" />
1290           <para>You can assign text to this property to change the text currently selected in the combo box. If no text is currently selected in the combo box, this property returns a zero-length string.</para>
1291         </remarks>
1292         <summary>
1293           <attribution license="cc4" from="Microsoft" modified="false" />
1294           <para>Gets or sets the text that is selected in the editable portion of a <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1295         </summary>
1296       </Docs>
1297       <AssemblyInfo>
1298         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1299       </AssemblyInfo>
1300     </Member>
1301     <Member MemberName="SelectionLength">
1302       <MemberSignature Language="C#" Value="public int SelectionLength { set; get; }" />
1303       <MemberType>Property</MemberType>
1304       <Attributes>
1305         <Attribute>
1306           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1307         </Attribute>
1308         <Attribute>
1309           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1310         </Attribute>
1311       </Attributes>
1312       <ReturnValue>
1313         <ReturnType>System.Int32</ReturnType>
1314       </ReturnValue>
1315       <Docs>
1316         <value>To be added.</value>
1317         <since version=".NET 2.0" />
1318         <remarks>
1319           <attribution license="cc4" from="Microsoft" modified="false" />
1320           <para>You can use this property to determine whether any characters are currently selected in the combo box control before performing operations on the selected text. When the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionLength" /> property is set to a value that is larger than the number of characters within the text of the control, the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionLength" /> property is set to the entire length of text within the control minus the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionStart" /> property (if any value is specified for the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionStart" /> property).</para>
1321         </remarks>
1322         <summary>
1323           <attribution license="cc4" from="Microsoft" modified="false" />
1324           <para>Gets or sets the number of characters selected in the editable portion of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1325         </summary>
1326       </Docs>
1327       <AssemblyInfo>
1328         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1329       </AssemblyInfo>
1330     </Member>
1331     <Member MemberName="SelectionStart">
1332       <MemberSignature Language="C#" Value="public int SelectionStart { set; get; }" />
1333       <MemberType>Property</MemberType>
1334       <Attributes>
1335         <Attribute>
1336           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1337         </Attribute>
1338         <Attribute>
1339           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1340         </Attribute>
1341       </Attributes>
1342       <ReturnValue>
1343         <ReturnType>System.Int32</ReturnType>
1344       </ReturnValue>
1345       <Docs>
1346         <value>To be added.</value>
1347         <since version=".NET 2.0" />
1348         <remarks>
1349           <attribution license="cc4" from="Microsoft" modified="false" />
1350           <para>If no text is selected in the control, this property indicates the insertion point for new text. If you set this property to a location beyond the length of the text in the control, the selection start position is placed after the last character. When text is selected in the text box control, changing this property can release the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionLength" /> property. If the remaining text in the control after the position indicated by the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionStart" /> property is less than the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionLength" /> property, the value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionLength" /> property is automatically decreased. The value of the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionStart" /> property never causes an increase in the <see cref="P:System.Windows.Forms.ToolStripComboBox.SelectionLength" /> property.</para>
1351         </remarks>
1352         <summary>
1353           <attribution license="cc4" from="Microsoft" modified="false" />
1354           <para>Gets or sets the starting index of text selected in the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1355         </summary>
1356       </Docs>
1357       <AssemblyInfo>
1358         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1359       </AssemblyInfo>
1360     </Member>
1361     <Member MemberName="Sorted">
1362       <MemberSignature Language="C#" Value="public bool Sorted { set; get; }" />
1363       <MemberType>Property</MemberType>
1364       <Attributes>
1365         <Attribute>
1366           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
1367         </Attribute>
1368       </Attributes>
1369       <ReturnValue>
1370         <ReturnType>System.Boolean</ReturnType>
1371       </ReturnValue>
1372       <Docs>
1373         <value>To be added.</value>
1374         <since version=".NET 2.0" />
1375         <remarks>
1376           <attribution license="cc4" from="Microsoft" modified="false" />
1377           <para>This property specifies whether the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> sorts existing entries and add new entries to the appropriate sorted position in the list. You can use this property to automatically sort items in a <see cref="T:System.Windows.Forms.ToolStripComboBox" />. As items are added to a sorted <see cref="T:System.Windows.Forms.ToolStripComboBox" />, the items are moved to the appropriate location in the sorted list. When you set the property to false, new items are added to the end of the existing list. The sort is case-insensitive and in alphabetically ascending order.</para>
1378         </remarks>
1379         <summary>
1380           <attribution license="cc4" from="Microsoft" modified="false" />
1381           <para>Gets or sets a value indicating whether the items in the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> are sorted.</para>
1382         </summary>
1383       </Docs>
1384       <AssemblyInfo>
1385         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1386       </AssemblyInfo>
1387     </Member>
1388     <Member MemberName="TextUpdate">
1389       <MemberSignature Language="C#" Value="public event EventHandler TextUpdate;" />
1390       <MemberType>Event</MemberType>
1391       <ReturnValue>
1392         <ReturnType>System.EventHandler</ReturnType>
1393       </ReturnValue>
1394       <Docs>
1395         <since version=".NET 2.0" />
1396         <remarks>
1397           <attribution license="cc4" from="Microsoft" modified="false" />
1398           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1399         </remarks>
1400         <summary>
1401           <attribution license="cc4" from="Microsoft" modified="false" />
1402           <para>Occurs when the <see cref="T:System.Windows.Forms.ToolStripComboBox" /> text has changed.</para>
1403         </summary>
1404       </Docs>
1405       <AssemblyInfo>
1406         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1407       </AssemblyInfo>
1408     </Member>
1409     <Member MemberName="ToString">
1410       <MemberSignature Language="C#" Value="public override string ToString ();" />
1411       <MemberType>Method</MemberType>
1412       <ReturnValue>
1413         <ReturnType>System.String</ReturnType>
1414       </ReturnValue>
1415       <Parameters />
1416       <Docs>
1417         <remarks>To be added.</remarks>
1418         <since version=".NET 2.0" />
1419         <summary>
1420           <attribution license="cc4" from="Microsoft" modified="false" />
1421           <para>Returns a string representation of the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1422         </summary>
1423         <returns>
1424           <attribution license="cc4" from="Microsoft" modified="false" />
1425           <para>A string that represents the <see cref="T:System.Windows.Forms.ToolStripComboBox" />.</para>
1426         </returns>
1427       </Docs>
1428       <AssemblyInfo>
1429         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1430       </AssemblyInfo>
1431     </Member>
1432   </Members>
1433 </Type>