1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
|
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Drawing.Design</name>
</assembly>
<members>
<member name="M:System.Drawing.Design.BitmapEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.BitmapEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.BitmapEditor.GetExtensions">
<summary>Gets the extensions for the file list filter that the bitmap editor will initially use to filter the file list.</summary>
<returns>The default set of file extensions used to filter the file list.</returns>
</member>
<member name="M:System.Drawing.Design.BitmapEditor.GetFileDialogDescription">
<summary>Gets the description for the default file list filter provided by this editor.</summary>
<returns>The description for the default type of files to filter the file list for.</returns>
</member>
<member name="M:System.Drawing.Design.BitmapEditor.LoadFromStream(System.IO.Stream)">
<summary>Loads an image from the specified stream.</summary>
<param name="stream">The stream from which to load the image. </param>
<returns>The <see cref="T:System.Drawing.Image" /> loaded from the stream.</returns>
</member>
<member name="M:System.Drawing.Design.ColorEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.ColorEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.ColorEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>Edits the given object value using the editor style provided by the <see cref="M:System.Drawing.Design.ColorEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" /> method.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<param name="provider">An <see cref="T:System.IServiceProvider" /> through which editing services may be obtained. </param>
<param name="value">An instance of the value being edited. </param>
<returns>The new value of the object. If the value of the object has not changed, this should return the same object it was passed.</returns>
</member>
<member name="M:System.Drawing.Design.ColorEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<returns>An enum value indicating the provided editing style.</returns>
</member>
<member name="M:System.Drawing.Design.ColorEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>Gets a value indicating if this editor supports the painting of a representation of an object's value.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.ColorEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
<summary>Paints a representative value of the given object to the provided canvas.</summary>
<param name="e">What to paint and where to paint it. </param>
</member>
<member name="M:System.Drawing.Design.ContentAlignmentEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.ContentAlignmentEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.ContentAlignmentEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>Edits the given object value using the editor style provided by the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.GetEditStyle" /> method.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<param name="provider">An <see cref="T:System.IServiceProvider" /> through which editing services may be obtained. </param>
<param name="value">An instance of the value being edited. </param>
<returns>The new value of the object. If the value of the object has not changed, this should return the same object it was passed.</returns>
</member>
<member name="M:System.Drawing.Design.ContentAlignmentEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
</member>
<member name="M:System.Drawing.Design.CursorEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.CursorEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.CursorEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>Edits the given object value using the editor style provided by the <see cref="Overload:System.Drawing.Design.CursorEditor.GetEditStyle" /> method.</summary>
<param name="context">A type descriptor context that can be used to provide additional context information. </param>
<param name="provider">A service provider object through which editing services may be obtained. </param>
<param name="value">An instance of the value being edited. </param>
<returns>The new value of the object. If the value of the object has not changed, this should return the same object it was passed.</returns>
</member>
<member name="M:System.Drawing.Design.CursorEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method. </summary>
<param name="context">A type descriptor context that can be used to provide additional context information. </param>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
</member>
<member name="M:System.Drawing.Design.FontEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.FontEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>Edits the value of the specified object using the editor style indicated by <see cref="M:System.Drawing.Design.FontEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<param name="provider">An <see cref="T:System.IServiceProvider" /> that this editor can use to obtain services. </param>
<param name="value">The object to edit. </param>
<returns>The new value of the object. If the value of the object has not changed, this should return the same object that was passed to it.</returns>
</member>
<member name="M:System.Drawing.Design.FontEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
</member>
<member name="M:System.Drawing.Design.FontNameEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.FontNameEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.FontNameEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>Determines if this editor supports the painting of a representation of an object's value.</summary>
<param name="context">A type descriptor context that can be used to provide additional context information. </param>
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.FontNameEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<param name="e">What to paint and where to paint it. </param>
</member>
<member name="M:System.Drawing.Design.IconEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.IconEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.IconEditor.CreateExtensionsString(System.String[],System.String)">
<summary>Creates a string representing the valid file extensions for icons.</summary>
<param name="extensions">An array of strings holding valid file extensions.</param>
<param name="sep">A string that specifies the separator character.</param>
<returns>A string containing the icon file extensions, or <see langword="null" /> if <paramref name="extensions" /> is <see langword="null" /> or empty.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.CreateFilterEntry(System.Drawing.Design.IconEditor)">
<summary>Creates a filter string for the file dialog box.</summary>
<param name="e">The <see cref="T:System.Drawing.Design.IconEditor" /> for which the filter string will be created.</param>
<returns>The filter string, created from the string returned by <see cref="M:System.Drawing.Design.IconEditor.CreateExtensionsString(System.String[],System.String)" />.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>Edits the given object value using the editor style provided by the <see cref="M:System.Drawing.Design.IconEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" /> method.</summary>
<param name="context">A type descriptor context that can be used to provide additional context information. </param>
<param name="provider">A service provider object through which editing services may be obtained. </param>
<param name="value">An instance of the value being edited. </param>
<returns>The new value of the object. If the value of the object has not changed, this should return the same object it was passed.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.IconEditor.EditValue" /> method.</summary>
<param name="context">A type descriptor context that can be used to provide additional context information. </param>
<returns>One of the <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> values indicating the provided editing style.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.GetExtensions">
<summary>Retrieves an array of valid file extensions for icons.</summary>
<returns>An array of valid file extensions for icons.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.GetFileDialogDescription">
<summary>Gets the description for the default file list filter provided by this editor.</summary>
<returns>The description for the default type of files to filter the file list for.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>Determines if this editor supports the painting of a representation of an object's value.</summary>
<param name="context">A type descriptor context that can be used to provide additional context information. </param>
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.LoadFromStream(System.IO.Stream)">
<summary>Creates a new <see cref="T:System.Drawing.Icon" /> from the given stream.</summary>
<param name="stream">The source stream from which the icon will be created.</param>
<returns>The newly created <see cref="T:System.Drawing.Icon" />.</returns>
</member>
<member name="M:System.Drawing.Design.IconEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
<summary>Paints a representative value of the given object to the provided canvas.</summary>
<param name="e">What to paint and where to paint it. </param>
</member>
<member name="M:System.Drawing.Design.ImageEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.ImageEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.ImageEditor.CreateExtensionsString(System.String[],System.String)">
<summary>Creates a string of file name extensions using the specified array of file extensions and the specified separator.</summary>
<param name="extensions">The extensions to filter for. </param>
<param name="sep">The separator to use. </param>
<returns>A string containing the specified file name extensions, each separated by the specified separator.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.CreateFilterEntry(System.Drawing.Design.ImageEditor)">
<summary>Creates a filter entry for a file dialog box's file list.</summary>
<param name="e">An <see cref="T:System.Drawing.Design.ImageEditor" /> to get the filter entry from.</param>
<returns>The new filter entry string.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
<summary>Edits the specified object value using the edit style provided by the <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" /> method.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<param name="provider">An <see cref="T:System.IServiceProvider" /> through which editing services can be obtained. </param>
<param name="value">An <see cref="T:System.Object" /> being edited. </param>
<returns>An <see cref="T:System.Object" /> representing the new value. If the value of the object has not changed, <see cref="M:System.Drawing.Design.ImageEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> returns the object that was passed to it.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
<summary>Gets the editing style of the <see cref="M:System.Drawing.Design.ImageEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<returns>One of the <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> values indicating the supported editing style.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.GetExtensions">
<summary>Gets the extensions for the file-list filter that this editor initially uses to filter the file list.</summary>
<returns>A set of file extensions used to filter the file list.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.GetFileDialogDescription">
<summary>Gets the description for the default file-list filter provided by this editor.</summary>
<returns>The description for the default file-list filter.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.GetImageExtenders">
<summary>Gets an array of supported image types.</summary>
<returns>An array of <see cref="T:System.Type" /> representing supported image types.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
<summary>Gets a value indicating whether this editor supports painting a representation of an object's value.</summary>
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that can be used to gain additional context information. </param>
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.LoadFromStream(System.IO.Stream)">
<summary>Loads an image from the specified stream.</summary>
<param name="stream">A <see cref="T:System.IO.Stream" /> that contains the image to load.</param>
<returns>The <see cref="T:System.Drawing.Image" /> that has been loaded.</returns>
</member>
<member name="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
<summary>Paints a value indicated by the specified <see cref="T:System.Drawing.Design.PaintValueEventArgs" />.</summary>
<param name="e">A <see cref="T:System.Drawing.Design.PaintValueEventArgs" /> indicating what to paint and where to paint it. </param>
</member>
<member name="M:System.Drawing.Design.MetafileEditor.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.MetafileEditor" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.MetafileEditor.GetExtensions">
<summary>Gets the extensions for the file-list filter that this editor initially uses to filter the file list.</summary>
<returns>A set of file extensions used to filter the file list.</returns>
</member>
<member name="M:System.Drawing.Design.MetafileEditor.GetFileDialogDescription">
<summary>Gets the description for the default file-list filter provided by this editor.</summary>
<returns>The description for the default file-list filter.</returns>
</member>
<member name="M:System.Drawing.Design.MetafileEditor.LoadFromStream(System.IO.Stream)">
<summary>Loads an image from the specified stream.</summary>
<param name="stream">A <see cref="T:System.IO.Stream" /> that contains the image to load.</param>
<returns>The <see cref="T:System.Drawing.Image" /> that has been loaded.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.#ctor(System.Drawing.Design.ToolboxItem)">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> class from a <see cref="T:System.Drawing.Design.ToolboxItem" />.</summary>
<param name="item">The <see cref="T:System.Drawing.Design.ToolboxItem" /> for which to create a <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> class from a serialization stream.</summary>
<param name="info">The serialization information passed in by the serializer when deserializing the <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</param>
<param name="context">The streaming context passed in by the serializer when deserializing the <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.#ctor(System.Windows.Forms.IDataObject)">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> class from a <see cref="T:System.Windows.Forms.IDataObject" />.</summary>
<param name="data">A data object that represents a <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.Equals(System.Object)">
<summary>Determines whether two <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> instances are equal.</summary>
<param name="obj">The <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> to compare with the current <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> is equal to the current <see cref="T:System.Drawing.Design.ToolboxItemContainer" />; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.GetFilter(System.Collections.ICollection)">
<summary>Returns a collection of <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> objects that represent the current filter for the <see cref="T:System.Drawing.Design.ToolboxItem" />. </summary>
<param name="creators">A collection of <see cref="T:System.Drawing.Design.ToolboxItemCreator" /> objects.</param>
<returns>A collection of <see cref="T:System.ComponentModel.ToolboxItemFilterAttribute" /> objects. This never returns <see langword="null" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>A hash code for the current <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>Saves the serialization state for the object.</summary>
<param name="info">The serialization information passed in by the serializer when serializing this object.</param>
<param name="context">The streaming context passed in by the serializer when serializing this object.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.GetToolboxItem(System.Collections.ICollection)">
<summary>Returns the <see cref="T:System.Drawing.Design.ToolboxItem" /> contained in the <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</summary>
<param name="creators">A collection of <see cref="T:System.Drawing.Design.ToolboxItemCreator" /> objects.</param>
<returns>The <see cref="T:System.Drawing.Design.ToolboxItem" /> contained in the <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.ToolboxItemContainer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)" /> method.</summary>
<param name="info">The serialization information passed in by the serializer when serializing this object.</param>
<param name="context">The streaming context passed in by the serializer when serializing this object.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxItemContainer.UpdateFilter(System.Drawing.Design.ToolboxItem)">
<summary>Merges the container's filter with the filter from the given item.</summary>
<param name="item">The source of the filter to merge with the container's filter.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxItemCreator.Create(System.Windows.Forms.IDataObject)">
<summary>Creates a new <see cref="T:System.Drawing.Design.ToolboxItem" /> from a <see cref="T:System.Windows.Forms.IDataObject" />.</summary>
<param name="data">A data object that represents a <see cref="T:System.Drawing.Design.ToolboxItem" />.</param>
<returns>A new instance of the <see cref="T:System.Drawing.Design.ToolboxItem" /> class.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Drawing.Design.ToolboxService" /> class. </summary>
</member>
<member name="M:System.Drawing.Design.ToolboxService.CreateItemContainer(System.Drawing.Design.ToolboxItem,System.ComponentModel.Design.IDesignerHost)">
<summary>Creates a new toolbox item container from a toolbox item.</summary>
<param name="item">The toolbox item for which to create an item container.</param>
<param name="link">An optional designer host that should be linked to this toolbox item. This parameter can be <see langword="null" />.</param>
<returns>A new toolbox item container.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="item" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.CreateItemContainer(System.Windows.Forms.IDataObject)">
<summary>Creates a new toolbox item container from a saved data object.</summary>
<param name="dataObject">A data object containing saved toolbox data.</param>
<returns>A new toolbox item container.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="dataObject" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.FilterChanged">
<summary>Occurs when the toolbox service detects that the active designer’s toolbox item filter has changed.</summary>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetItemContainers">
<summary>Returns an <see cref="T:System.Collections.IList" /> containing all items on the toolbox.</summary>
<returns>An <see cref="T:System.Collections.IList" /> containing all items on the toolbox.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetItemContainers(System.String)">
<summary>Returns an <see cref="T:System.Collections.IList" /> containing all items in a given category.</summary>
<param name="categoryName">The category for which to retrieve the item container list.</param>
<returns>An <see cref="T:System.Collections.IList" /> containing all items in the category specified by <paramref name="categoryName" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetToolboxItem(System.Type)">
<summary>Returns a toolbox item for a given type.</summary>
<param name="toolType">The type of component for which to retrieve the toolbox item.</param>
<returns>A toolbox item associated with the given type, or <see langword="null" /> if the type has no corresponding toolbox item.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="toolType" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetToolboxItem(System.Type,System.Boolean)">
<summary>Returns a toolbox item for a given type.</summary>
<param name="toolType">The type of component for which to retrieve the toolbox item.</param>
<param name="nonPublic">
<see langword="true" /> to search for non-public constructors on the type; <see langword="false" /> to search for public constructors.</param>
<returns>A toolbox item associated with the given type, or <see langword="null" /> if the type has no corresponding toolbox item.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="toolType" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetToolboxItems(System.Reflection.Assembly,System.String)">
<summary>Returns an <see cref="T:System.Collections.ICollection" /> containing all the toolbox items in the given assembly.</summary>
<param name="a">The assembly to enumerate.</param>
<param name="newCodeBase">A string that is the URL location of the assembly.</param>
<returns>A collection containing all the toolbox items in the given assembly.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="a" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetToolboxItems(System.Reflection.Assembly,System.String,System.Boolean)">
<summary>Returns an <see cref="T:System.Collections.ICollection" /> of <see cref="T:System.Drawing.Design.ToolboxItem" /> objects for the given assembly.</summary>
<param name="a">The assembly to enumerate.</param>
<param name="newCodeBase">A string that is the URL location of the assembly.</param>
<param name="throwOnError">
<see langword="true" /> to throw an exception on error; otherwise, <see langword="false" />.</param>
<returns>A collection containing all the toolbox items in the assembly represented by the given assembly name.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="a" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetToolboxItems(System.Reflection.AssemblyName)">
<summary>Returns an <see cref="T:System.Collections.ICollection" /> of <see cref="T:System.Drawing.Design.ToolboxItem" /> objects for the given assembly.</summary>
<param name="an">An assembly name from which to load an assembly.</param>
<returns>A collection containing all the toolbox items in the assembly represented by the given assembly name.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="an" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.GetToolboxItems(System.Reflection.AssemblyName,System.Boolean)">
<summary>Returns an <see cref="T:System.Collections.ICollection" /> of <see cref="T:System.Drawing.Design.ToolboxItem" /> objects for the given assembly.</summary>
<param name="an">An assembly name from which to load an assembly.</param>
<param name="throwOnError">
<see langword="true" /> to throw an exception on error; otherwise, <see langword="false" />.</param>
<returns>A collection containing all the toolbox items in the assembly represented by the given assembly name.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="an" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.IsItemContainer(System.Windows.Forms.IDataObject,System.ComponentModel.Design.IDesignerHost)">
<summary>Returns a value indicating whether the given data object represents an item container.</summary>
<param name="dataObject">The data object to examine for the presence of a toolbox item container.</param>
<param name="host">An optional designer host. This parameter can be <see langword="null" />.</param>
<returns>
<see langword="true" /> if the given data object represents an item container; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="dataObject" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.IsItemContainerSupported(System.Drawing.Design.ToolboxItemContainer,System.ComponentModel.Design.IDesignerHost)">
<summary>Determines whether the toolbox item container is supported by the given designer host.</summary>
<param name="container">The toolbox item container.</param>
<param name="host">The given designer host.</param>
<returns>
<see langword="true" /> if the toolbox item container is supported by the given designer host; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="container" /> or <paramref name="host" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.Refresh">
<summary>Refreshes the state of the toolbox items.</summary>
</member>
<member name="M:System.Drawing.Design.ToolboxService.SelectedItemContainerUsed">
<summary>Receives a call from the toolbox service when a user reports that a selected toolbox item has been used.</summary>
</member>
<member name="M:System.Drawing.Design.ToolboxService.SetCursor">
<summary>Sets the current application's cursor to a cursor that represents the currently selected tool.</summary>
<returns>
<see langword="true" /> if there is an item selected; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#ComponentModel#Design#IComponentDiscoveryService#GetComponentTypes(System.ComponentModel.Design.IDesignerHost,System.Type)">
<summary>Gets the list of available component types.</summary>
<param name="designerHost">The designer host providing design-time services.</param>
<param name="baseType">The base type specifying the components to retrieve. Can be <see langword="null" />.</param>
<returns>The list of available component types.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback,System.String)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback,System.String)" /> method.</summary>
<param name="creator">A <see cref="T:System.Drawing.Design.ToolboxItemCreatorCallback" /> that can create a component when the toolbox item is invoked.</param>
<param name="format">The data format that the creator handles.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback,System.String,System.ComponentModel.Design.IDesignerHost)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback,System.String,System.ComponentModel.Design.IDesignerHost)" /> method.</summary>
<param name="creator">A <see cref="T:System.Drawing.Design.ToolboxItemCreatorCallback" /> that can create a component when the toolbox item is invoked.</param>
<param name="format">The data format that the creator handles.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> that represents the designer host to associate with the creator.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem,System.ComponentModel.Design.IDesignerHost)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem,System.ComponentModel.Design.IDesignerHost)" /> method.</summary>
<param name="toolboxItem">The linked <see cref="T:System.Drawing.Design.ToolboxItem" /> to add to the toolbox.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> for the current design document.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem,System.String,System.ComponentModel.Design.IDesignerHost)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem,System.String,System.ComponentModel.Design.IDesignerHost)" />method.</summary>
<param name="toolboxItem">The linked <see cref="T:System.Drawing.Design.ToolboxItem" /> to add to the toolbox.</param>
<param name="category">The toolbox item category to add the toolbox item to.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> for the current design document.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#AddToolboxItem(System.Drawing.Design.ToolboxItem)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.AddToolboxItem(System.Drawing.Design.ToolboxItem)" /> method.</summary>
<param name="toolboxItem">The <see cref="T:System.Drawing.Design.ToolboxItem" /> to add to the toolbox.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#AddToolboxItem(System.Drawing.Design.ToolboxItem,System.String)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.AddToolboxItem(System.Drawing.Design.ToolboxItem,System.String)" /> method.</summary>
<param name="toolboxItem">The <see cref="T:System.Drawing.Design.ToolboxItem" /> to add to the toolbox.</param>
<param name="category">The toolbox item category to add the <see cref="T:System.Drawing.Design.ToolboxItem" /> to.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#DeserializeToolboxItem(System.Object)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.DeserializeToolboxItem(System.Object)" /> method.</summary>
<param name="serializedObject">The object that contains the <see cref="T:System.Drawing.Design.ToolboxItem" /> to retrieve.</param>
<returns>The <see cref="T:System.Drawing.Design.ToolboxItem" /> created from deserialization.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#DeserializeToolboxItem(System.Object,System.ComponentModel.Design.IDesignerHost)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.DeserializeToolboxItem(System.Object,System.ComponentModel.Design.IDesignerHost)" /> method.</summary>
<param name="serializedObject">The object that contains the <see cref="T:System.Drawing.Design.ToolboxItem" /> to retrieve.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> to associate with this <see cref="T:System.Drawing.Design.ToolboxItem" />.</param>
<returns>The <see cref="T:System.Drawing.Design.ToolboxItem" /> created from deserialization.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#GetSelectedToolboxItem">
<summary>For a description of this member, see the <see cref="Overload:System.Drawing.Design.IToolboxService.GetSelectedToolboxItem" /> method.</summary>
<returns>The <see cref="T:System.Drawing.Design.ToolboxItem" /> that is currently selected, or <see langword="null" /> if no toolbox item is currently selected.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#GetSelectedToolboxItem(System.ComponentModel.Design.IDesignerHost)">
<summary>For a description of this member, see the <see cref="M:System.Drawing.Design.IToolboxService.GetSelectedToolboxItem(System.ComponentModel.Design.IDesignerHost)" /> method.</summary>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> that the selected tool must be associated with for it to be returned.</param>
<returns>The <see cref="T:System.Drawing.Design.ToolboxItem" /> that is currently selected, or <see langword="null" /> if no toolbox item is currently selected.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#GetToolboxItems">
<summary>Gets the entire collection of toolbox items from the toolbox.</summary>
<returns>A <see cref="T:System.Drawing.Design.ToolboxItemCollection" /> that contains the current toolbox items.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#GetToolboxItems(System.ComponentModel.Design.IDesignerHost)">
<summary>Gets the collection of toolbox items that are associated with the specified designer host from the toolbox.</summary>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> that is associated with the toolbox items to retrieve.</param>
<returns>A <see cref="T:System.Drawing.Design.ToolboxItemCollection" /> that contains the current toolbox items that are associated with the specified designer host.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="host" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#GetToolboxItems(System.String)">
<summary>Gets a collection of toolbox items from the toolbox that match the specified category.</summary>
<param name="category">The toolbox item category from which to retrieve all the toolbox items.</param>
<returns>A <see cref="T:System.Drawing.Design.ToolboxItemCollection" /> that contains the current toolbox items that are associated with the specified category.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="host" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#GetToolboxItems(System.String,System.ComponentModel.Design.IDesignerHost)">
<summary>Gets the collection of toolbox items that are associated with the specified designer host and category from the toolbox.</summary>
<param name="category">The toolbox item category to retrieve the toolbox items from.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> that is associated with the toolbox items to retrieve.</param>
<returns>A <see cref="T:System.Drawing.Design.ToolboxItemCollection" /> that contains the current toolbox items that are associated with the specified category and designer host.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="category " />or <paramref name="host" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#IsSupported(System.Object,System.Collections.ICollection)">
<summary>Gets a value indicating whether the specified object, which represents a serialized toolbox item, matches the specified attributes.</summary>
<param name="serializedObject">The object that contains the <see cref="T:System.Drawing.Design.ToolboxItem" /> to retrieve.</param>
<param name="filterAttributes">An <see cref="T:System.Collections.ICollection" /> that contains the attributes to test the serialized object for.</param>
<returns>
<see langword="true" /> if the object matches the specified attributes; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="serializedObject" /> or <paramref name="filterAttributes" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#IsSupported(System.Object,System.ComponentModel.Design.IDesignerHost)">
<summary>Gets a value indicating whether the specified object, which represents a serialized toolbox item, can be used by the specified designer host.</summary>
<param name="serializedObject">The object that contains the <see cref="T:System.Drawing.Design.ToolboxItem" /> to retrieve.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> to test for support for the <see cref="T:System.Drawing.Design.ToolboxItem" />.</param>
<returns>
<see langword="true" /> if the specified object is compatible with the specified designer host; otherwise, <see langword="false" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="serializedObject" /> or <paramref name="host" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#IsToolboxItem(System.Object)">
<summary>Gets a value indicating whether the specified object is a serialized toolbox item.</summary>
<param name="serializedObject">The object to inspect.</param>
<returns>
<see langword="true" /> if the object contains a toolbox item object; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#IsToolboxItem(System.Object,System.ComponentModel.Design.IDesignerHost)">
<summary>Gets a value indicating whether the specified object is a serialized toolbox item byusing the specified designer host.</summary>
<param name="serializedObject">The object to inspect.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> that is making this request.</param>
<returns>
<see langword="true" /> if the object contains a toolbox item object; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#Refresh">
<summary>Refreshes the state of the toolbox items.</summary>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#RemoveCreator(System.String)">
<summary>Removes a previously added toolbox item creator of the specified data format.</summary>
<param name="format">The data format of the creator to remove.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="format" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#RemoveCreator(System.String,System.ComponentModel.Design.IDesignerHost)">
<summary>Removes a previously added toolbox creator that is associated with the specified data format and the specified designer host.</summary>
<param name="format">The data format of the creator to remove.</param>
<param name="host">The <see cref="T:System.ComponentModel.Design.IDesignerHost" /> that is associated with the creator to remove.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="format" /> or <paramref name="host" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#RemoveToolboxItem(System.Drawing.Design.ToolboxItem)">
<summary>Removes the specified toolbox item from the toolbox.</summary>
<param name="toolboxItem">The <see cref="T:System.Drawing.Design.ToolboxItem" /> to remove from the toolbox.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="toolboxItem" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#RemoveToolboxItem(System.Drawing.Design.ToolboxItem,System.String)">
<summary>Removes the specified toolbox item from the toolbox.</summary>
<param name="toolboxItem">The <see cref="T:System.Drawing.Design.ToolboxItem" /> to remove from the toolbox.</param>
<param name="category">The toolbox item category to remove the <see cref="T:System.Drawing.Design.ToolboxItem" /> from.</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="toolboxItem" /> or <paramref name="category" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#SelectedToolboxItemUsed">
<summary>Notifies the toolbox service that the selected tool has been used.</summary>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#SerializeToolboxItem(System.Drawing.Design.ToolboxItem)">
<summary>Gets a serializable object that represents the specified toolbox item.</summary>
<param name="toolboxItem">The <see cref="T:System.Drawing.Design.ToolboxItem" /> to serialize.</param>
<returns>An object that represents the specified <see cref="T:System.Drawing.Design.ToolboxItem" />.</returns>
<exception cref="T:System.ArgumentNullException">
<paramref name="toolboxItem" /> is <see langword="null" />.</exception>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#SetCursor">
<summary>Sets the current application's cursor to a cursor that represents the currently selected tool.</summary>
<returns>
<see langword="true" /> if the cursor is set by the currently selected tool; <see langword="false" /> if there is no tool selected and the cursor is set to the standard Windows cursor.</returns>
</member>
<member name="M:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#SetSelectedToolboxItem(System.Drawing.Design.ToolboxItem)">
<summary>Selects the specified toolbox item.</summary>
<param name="toolboxItem">The <see cref="T:System.Drawing.Design.ToolboxItem" /> to select.</param>
</member>
<member name="M:System.Drawing.Design.ToolboxService.UnloadToolboxItems">
<summary>Unloads any assemblies that were locked as a result of calling the <see cref="Overload:System.Drawing.Design.ToolboxService.GetToolboxItems" /> method.</summary>
</member>
<member name="P:System.Drawing.Design.CursorEditor.IsDropDownResizable">
<summary>Gets a value indicating whether drop-down editors should be resizable by the user.</summary>
<returns>
<see langword="true" /> if drop-down editors are resizable; otherwise, false.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxItemContainer.IsCreated">
<summary>Gets a value indicating whether the underlying toolbox item has been deserialized.</summary>
<returns>
<see langword="true" /> if the underlying toolbox item has been deserialized; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxItemContainer.IsTransient">
<summary>Gets a value indicating if the <see cref="T:System.Drawing.Design.ToolboxItem" /> contained in the <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> is transient.</summary>
<returns>
<see langword="true" />, if the <see cref="T:System.Drawing.Design.ToolboxItem" /> contained in the <see cref="T:System.Drawing.Design.ToolboxItemContainer" /> is marked as transient; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxItemContainer.ToolboxData">
<summary>Gets an <see cref="T:System.Windows.Forms.IDataObject" /> that describes this <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</summary>
<returns>An <see cref="T:System.Windows.Forms.IDataObject" /> that describes this <see cref="T:System.Drawing.Design.ToolboxItemContainer" />.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxItemCreator.Format">
<summary>Gets the Clipboard format that represents the data needed to deserialize a <see cref="T:System.Drawing.Design.ToolboxItem" />.</summary>
<returns>A string representing the Clipboard format.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxService.CategoryNames">
<summary>Gets a collection of strings depicting available categories of the toolbox.</summary>
<returns>A collection of category names.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxService.SelectedCategory">
<summary>Gets or sets the name of the currently selected category.</summary>
<returns>A string containing the name of the currently selected category.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxService.SelectedItemContainer">
<summary>Gets or sets the currently selected item container.</summary>
<returns>The item container for the currently selected toolbox item, or <see langword="null" /> if no item is selected.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#CategoryNames">
<summary>For a description of this member, see the <see cref="P:System.Drawing.Design.IToolboxService.CategoryNames" /> property.</summary>
<returns>A <see cref="T:System.Drawing.Design.CategoryNameCollection" /> containing the tool categories.</returns>
</member>
<member name="P:System.Drawing.Design.ToolboxService.System#Drawing#Design#IToolboxService#SelectedCategory">
<summary>For a description of this member, see the <see cref="P:System.Drawing.Design.IToolboxService.SelectedCategory" /> property.</summary>
<returns>The name of the currently selected category.</returns>
</member>
<member name="T:System.Drawing.Design.BitmapEditor">
<summary>Provides a user interface for selecting bitmap files in a property browser.</summary>
</member>
<member name="T:System.Drawing.Design.ColorEditor">
<summary>Provides a <see cref="T:System.Drawing.Design.UITypeEditor" /> for visually picking a color.</summary>
</member>
<member name="T:System.Drawing.Design.ContentAlignmentEditor">
<summary>Provides a <see cref="T:System.Drawing.Design.UITypeEditor" /> for visually editing content alignment.</summary>
</member>
<member name="T:System.Drawing.Design.CursorEditor">
<summary>Provides a <see cref="T:System.Drawing.Design.UITypeEditor" /> that can perform default file searching for cursor (.cur) files.</summary>
</member>
<member name="T:System.Drawing.Design.FontEditor">
<summary>Provides a user interface to select and configure a <see cref="T:System.Drawing.Font" /> object.</summary>
</member>
<member name="T:System.Drawing.Design.FontNameEditor">
<summary>Provides a <see cref="T:System.Drawing.Design.UITypeEditor" /> that paints a glyph for the font name.</summary>
</member>
<member name="T:System.Drawing.Design.IconEditor">
<summary>Provides a <see cref="T:System.Drawing.Design.UITypeEditor" /> for visually choosing an icon.</summary>
</member>
<member name="T:System.Drawing.Design.ImageEditor">
<summary>Provides a user interface for selecting an image for a property in a property grid.</summary>
</member>
<member name="T:System.Drawing.Design.MetafileEditor">
<summary>Provides a <see cref="T:System.Drawing.Design.UITypeEditor" /> that can perform default file searching for metafile (.emf) files.</summary>
</member>
<member name="T:System.Drawing.Design.ToolboxItemContainer">
<summary>Encapsulates a <see cref="T:System.Drawing.Design.ToolboxItem" />.</summary>
</member>
<member name="T:System.Drawing.Design.ToolboxItemCreator">
<summary>Encapsulates a <see cref="T:System.Drawing.Design.ToolboxItemCreatorCallback" />. This class cannot be inherited.</summary>
</member>
<member name="T:System.Drawing.Design.ToolboxService">
<summary>Provides a default implementation of the <see cref="T:System.Drawing.Design.IToolboxService" /> interface.</summary>
</member>
</members>
</doc>
|