-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathMicrosoft.VisualBasic.PowerPacks.Vs.xml
2453 lines (2453 loc) · 223 KB
/
Microsoft.VisualBasic.PowerPacks.Vs.xml
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
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Microsoft.VisualBasic.PowerPacks.Vs</name>
</assembly>
<members>
<member name="T:Microsoft.VisualBasic.PowerPacks.BackStyle">
<summary>Specifies the background transparency for an <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" /> or <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" /> control.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.BackStyle.Transparent">
<summary>A transparent background. This is the default.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque">
<summary>A background specified by the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.BackColor" /> property.</summary>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeater">
<summary>Displays data in a customizable list format.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.AddNew">
<summary>Adds a new <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> to the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<exception cref="T:System.Data.ReadOnlyException">The <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToAddItems" /> property is set to False.</exception>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToAddItems">
<summary>Gets or sets a value that determines whether users can add a new row to a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> at run time.</summary>
<returns>true if the user can add rows; otherwise false. The default is true.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToAddItemsChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToAddItems" /> property changes.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToDeleteItems">
<summary>Gets or sets a value that determines whether users can delete a row from a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> at run time.</summary>
<returns>true if the user can delete rows; otherwise false. The default is true.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToDeleteItemsChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToDeleteItems" /> property changes.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AutoScroll"></member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AutoScrollMargin"></member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.AutoScrollMinSize"></member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.BeginResetItemTemplate">
<summary>Begins a code block that enables you to reset the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> for a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.CancelEdit">
<summary>Allows users to cancel an edit to the current child control in the current <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.CreateAccessibilityInstance">
<summary>Creates a new accessibility object for a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>A new accessibility object.</returns>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.CreateControlsInstance">
<summary>This member overrides the <see cref="M:System.Windows.Forms.Control.CreateControlsInstance" /> method.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.CreateParams">
<summary>This member overrides <see cref="P:System.Windows.Forms.Control.CreateParams" />.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.CurrentItem">
<summary>Gets the current <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>The currently selected object.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.CurrentItemIndex">
<summary>Gets or sets the current <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>The index of the current <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.CurrentItemIndexChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.CurrentItemIndex" /> changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataError">
<summary>Occurs when an external data-parsing or validation operation throws an exception, or when an attempt to commit data to a data source fails.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataMember">
<summary>Gets or sets the name of the list or table in the data source for which the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> is displaying data.</summary>
<returns>The name of the table or list in the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataSource" /> for which the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> is displaying data. The default is Empty.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataMemberChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataMember" /> property changes.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataSource">
<summary>Gets or sets the data source for which the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> is displaying data.</summary>
<returns>The object that contains data for the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> to display.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataSourceChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataSource" /> property is changed.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.DefaultPadding">
<summary>This member overrides the <see cref="P:System.Windows.Forms.Control.DefaultPadding" /> property.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DeletingItems">
<summary>Occurs when a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> is being deleted.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.DisplayedItemCount(System.Boolean)">
<summary>Gets the number of <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> items that are visible in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control, optionally including partially displayed items.</summary>
<returns>The count of displayed items.</returns>
<param name="includePartialItems">true to include partially displayed items in the count; false to include only fully displayed items.</param>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DrawItem">
<summary>Occurs when a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> must be drawn.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.EndResetItemTemplate">
<summary>Ends a code block that enables you to reset the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> for a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.FirstDisplayedItemIndex">
<summary>Gets the index of the first currently displayed <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>The index of the first displayed <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.IsCurrentItemDirty">
<summary>Gets a value that determines whether the data for a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control has been changed by a user.</summary>
<returns>true if the data has been changed; otherwise, false.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCloned">
<summary>Occurs after the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> and its controls are cloned from the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" />.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCloning">
<summary>Occurs before the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> and its controls are cloned from the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" />.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCount">
<summary>Gets or sets the number of <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> items that are in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>The count.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemHeaderSize">
<summary>Gets or sets the size of the item header in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>The size of the item header, in pixels. The default value is 15.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemHeaderVisible">
<summary>Gets or sets a value that determines whether item headers are displayed in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>true if the item header will be displayed; otherwise, false. The default is true.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemHeaderVisibleChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemHeaderVisible" /> property changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsAdded">
<summary>Occurs when a new <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> is added to a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsRemoved">
<summary>Occurs when a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> is deleted from a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate">
<summary>Gets a template that represents the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> for a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>An object that determines the layout and appearance of items in the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.VirtualMode" /> property is set to True and a new value for a child control of a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> is needed.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.VirtualMode" /> property is set to True and the value of a child control in the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> changes.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.LayoutStyle">
<summary>Gets or sets a value that determines whether a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control will be displayed with a vertical or horizontal orientation.</summary>
<returns>One of the enumeration values that specifies the layout.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.LayoutStyleChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.LayoutStyle" /> property value changes.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.NewItemNeeded">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.VirtualMode" /> property is set to True and the user creates a new blank <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnAllowUserToAddItemsChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToAddItemsChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnAllowUserToDeleteItemsChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.AllowUserToDeleteItemsChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnClientSizeChanged(System.EventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.Control.ClientSizeChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnCreateControl">
<summary>Raises the <see cref="M:System.Windows.Forms.Control.CreateControl" /> method.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnCurrentItemIndexChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.CurrentItemIndexChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnDataError(Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataError" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnDataMemberChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataMemberChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnDataSourceChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataSourceChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnDeletingItems(Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DeletingItems" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnDrawItem(Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DrawItem" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnItemCloned(Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCloned" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnItemCloning(Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCloning" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnItemHeaderVisibleChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemHeaderVisibleChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnItemsAdded(Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsAdded" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnItemsRemoved(Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsRemoved" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnItemValueNeeded(Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnItemValuePushed(Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.Panel.KeyDown" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnLayoutStyleChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.LayoutStyleChanged" /> event</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.Control.MouseWheel" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnNewItemNeeded(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.NewItemNeeded" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnPaddingChanged(System.EventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.Control.PaddingChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnRightToLeftChanged(System.EventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.Control.RightToLeftChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnScroll(System.Windows.Forms.ScrollEventArgs)">
<summary>Raises the <see cref="E:System.Windows.Forms.ScrollableControl.Scroll" /> event.</summary>
<param name="se">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnSelectionColorChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.SelectionColorChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnUserAddedItems(Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserAddedItems" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnUserDeletedItems(Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletedItems" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnUserDeletingItems(Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletingItems" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnValidating(System.ComponentModel.CancelEventArgs)"></member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.OnVirtualModeChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.VirtualModeChanged" /> event.</summary>
<param name="e">An object that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.ProcessTabKey(System.Boolean)">
<summary>This member overrides the <see cref="M:System.Windows.Forms.ContainerControl.ProcessTabKey(System.Boolean)" /> method.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.RemoveAt(System.Int32)">
<summary>Removes a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> at the specified position from a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<param name="index">The index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The value specified for <paramref name="index" /> is less than 0 or greater than <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCount" /> - 1.</exception>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.ScrollControlIntoView(System.Windows.Forms.Control)"></member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.ScrollItemIntoView(System.Int32)">
<summary>Scrolls a specified <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> into view in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<param name="index">The index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The value specified for <paramref name="index" /> is less than 0 or greater than <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCount" /> - 1.</exception>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.ScrollItemIntoView(System.Int32,System.Boolean)">
<summary>Scrolls a specified <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> into view in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control, optionally aligning it with the top of the control.</summary>
<param name="index">The index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</param>
<param name="alignWithTop">true to align the top of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> with the top of the control; otherwise, false.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The value specified for <paramref name="index" /> is less than 0 or greater than <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCount" /> - 1.</exception>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.ScrollToControl(System.Windows.Forms.Control)">
<summary>This member overrides the <see cref="M:System.Windows.Forms.ScrollableControl.ScrollToControl(System.Windows.Forms.Control)" /> method.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.Select(System.Boolean,System.Boolean)">
<summary>This member overrides the <see cref="M:System.Windows.Forms.Control.Select(System.Boolean,System.Boolean)" /> method.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.SelectionColor">
<summary>Gets or sets the color that is displayed in the item header of a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control when an item is first selected.</summary>
<returns>The color to use. The default is <see cref="P:System.Drawing.SystemColors.Highlight" />.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.SelectionColorChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.SelectionColor" /> property is changed.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserAddedItems">
<summary>Occurs when the user adds a new <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> by pressing the CTRL+N keyboard shortcut.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletedItems">
<summary>Occurs after the user deletes a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> by pressing the DELETE key.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletingItems">
<summary>Occurs when the user deletes a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> by pressing the DELETE key.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.VirtualMode">
<summary>Gets or sets a value that indicates whether you have provided your own data-management operations for the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control. </summary>
<returns>true if the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> uses data-management operations that you provide; otherwise, false. The default is false.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.VirtualModeChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.VirtualMode" /> property is changed.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeater.WndProc(System.Windows.Forms.Message@)">
<summary>This member overrides the <see cref="M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@)" /> method.</summary>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs">
<summary>Provides data for the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DeletingItems" /> and <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletingItems" /> events.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs.#ctor(System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs" /> class.</summary>
<param name="index">The index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that is being deleted.</param>
<param name="count">The number of items being deleted.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs.ItemCount">
<summary>Gets the number of items being deleted.</summary>
<returns>A count of the items.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs.ItemIndex">
<summary>Gets the index of the item that is being deleted.</summary>
<returns>The index of the item.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventHandler">
<summary>Represents the method that handles the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DeletingItems" /> and <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletingItems" /> events.</summary>
<param name="sender">The source of the event.</param>
<param name="e">An object that contains the event data.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs">
<summary>Provides data for the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsAdded" />, <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsRemoved" />, <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserAddedItems" />, and <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletedItems" /> events.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs.#ctor(System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs" /> class.</summary>
<param name="index">The index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that is being added or deleted.</param>
<param name="count">The number of items being added or deleted.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs.ItemCount">
<summary>Gets the number of items being added to or deleted from a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>A count of the items.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventArgs.ItemIndex">
<summary>Gets the index of the item being added or deleted.</summary>
<returns>The index of the item.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsEventHandler">
<summary>Represents the method that will handle the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsAdded" />, <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemsRemoved" />, <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserAddedItems" />, and <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.UserDeletedItems" /> events.</summary>
<param name="sender">The source of the event.</param>
<param name="e">An object that contains the event data.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs">
<summary>Provides data for the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataError" /> event.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs.#ctor(Microsoft.VisualBasic.PowerPacks.DataRepeaterItem,System.Windows.Forms.Control,System.String,System.Exception)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs" /> class.</summary>
<param name="item">The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> on which the error occurred.</param>
<param name="prop">The property on which the error occurred. For most controls, this will be the <see cref="P:System.Windows.Forms.Control.Text" /> property.</param>
<param name="ex">The exception object.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs.Control">
<summary>Gets the <see cref="T:System.Windows.Forms.Control" /> that raised the data error.</summary>
<returns>The control that raised the error.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs.DataRepeaterItem">
<summary>Gets the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that raised the data error.</summary>
<returns>The item that contains the control in which the error occurred.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs.Exception">
<summary>Gets the <see cref="T:System.Exception" /> that represents the error.</summary>
<returns>The exception object that represents the error.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs.PropertyName">
<summary>Gets the name of the property of the control that raised the error.</summary>
<returns>The name of the property.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs.ThrowException">
<summary>Gets or sets a value that indicates whether to throw an exception after code execution exits the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataError" /> event handler.</summary>
<returns>true if the exception is thrown; otherwise, false. The default is false.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventHandler">
<summary>Represents the method that will handle the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DataError" /> event.</summary>
<param name="sender">The source of the event.</param>
<param name="e">An object that contains the event data.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem">
<summary>Used by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.AccessibilityObject">
<summary>Gets the <see cref="T:System.Windows.Forms.AccessibleObject" /> that is assigned to the control.</summary>
<returns>The <see cref="T:System.Windows.Forms.AccessibleObject" /> that is assigned to the control.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.AccessibleDefaultActionDescription">
<summary>Gets or sets the default action description of the control for use by accessibility client applications.</summary>
<returns>The default action description of the control for use by accessibility client applications.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.AccessibleDescription">
<summary>Gets or sets the description of the control that is used by accessibility client applications.</summary>
<returns>A string that contains the description of the control that is used by accessibility client applications. The default is a null reference (Nothing in Visual Basic).</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.AccessibleName">
<summary>Gets or sets the name of the control that is used by accessibility client applications.</summary>
<returns>A string that represents the name of the control that is used by accessibility client applications. The default is a null reference (Nothing in Visual Basic).</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.AccessibleRole">
<summary>Gets or sets the accessible role of the control.</summary>
<returns>One of the values of <see cref="T:System.Windows.Forms.AccessibleRole" />. The default is Default.</returns>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</exception>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.Anchor">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<returns>An <see cref="T:System.Windows.Forms.AnchorStyles" /> enumeration.</returns>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.CreateAccessibilityInstance">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<returns>An <see cref="T:System.Windows.Forms.AccessibleObject" /> for the Accessibility instance.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.Dock">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<returns>A <see cref="T:System.Windows.Forms.DockStyle" /> enumeration.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.IsCurrent">
<summary>Gets a value that determines whether a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> is the currently selected item in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>true if the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> is the currently selected item; otherwise, false.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.IsDirty">
<summary>Gets a value that determines whether the data for a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control has been changed by a user.</summary>
<returns>true if the data has been changed; otherwise, false.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.ItemIndex">
<summary>Gets the index of a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
<returns>The index of the current <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.Location">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<returns>A <see cref="T:System.Drawing.Point" /> that represents the location.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.Name">
<summary>Gets or sets the name of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object.</summary>
<returns>The name of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object. The default is an empty string ("").</returns>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.OnEnabledChanged(System.EventArgs)"></member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.OnGotFocus(System.EventArgs)">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<param name="e">The <see cref="T:System.EventArgs" /> for the event.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.OnLostFocus(System.EventArgs)">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<param name="e">The <see cref="T:System.EventArgs" /> for the event.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.OnPreviewKeyDown(System.Windows.Forms.PreviewKeyDownEventArgs)">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<param name="e">The <see cref="T:System.Windows.Forms.PreviewKeyDownEventArgs" /> for the event.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<param name="x">The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control.</param>
<param name="y">The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control.</param>
<param name="width">The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control.</param>
<param name="height">The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control.</param>
<param name="specified">A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values. </param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.TabIndex">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<returns>An Integer that represents the index.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.TabStop">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<returns>true if the control participates in the tab order; otherwise false.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.Visible">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<returns>true if the item is visible; otherwise false.</returns>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem.WndProc(System.Windows.Forms.Message@)">
<summary>The <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> object is used internally by the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control to display data at run time. The settings of the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> determine how the data is displayed.</summary>
<param name="m">The <see cref="T:System.Windows.Forms.Message" /> for the process.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventArgs">
<summary>Provides data for the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCloning" /> event.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventArgs.#ctor(Microsoft.VisualBasic.PowerPacks.DataRepeaterItem)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventArgs" /> class.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventArgs.Handled">
<summary>Gets or sets a value that specifies whether the cloning is handled by the developer.</summary>
<returns>true if you are handling the cloning yourself; otherwise, false. The default is false.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventArgs.Source">
<summary>Gets the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> from which the new <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> will be cloned.</summary>
<returns>The object from which the new object will be cloned.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventArgs.Target">
<summary>Gets or sets the new <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that is the result of the cloning operation.</summary>
<returns>The cloned object.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemCloneEventHandler">
<summary>Represents the method that will handle the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemCloning" /> event.</summary>
<param name="sender">The source of the event.</param>
<param name="e">An object that contains the event data.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs">
<summary>Provides data for the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DrawItem" /> event.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs.#ctor(Microsoft.VisualBasic.PowerPacks.DataRepeaterItem)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs" /> class.</summary>
<param name="item">The item to be drawn.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs.DataRepeaterItem">
<summary>Gets a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that provides the data for the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DrawItem" /> event of a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control</summary>
<returns>An item that contains the data, which is based on the <see cref="P:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemTemplate" /> property of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventHandler">
<summary>Represents the method that will handle the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.DrawItem" /> event.</summary>
<param name="sender">The source of the event.</param>
<param name="e">An object that contains the event data.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs">
<summary>Provides data for the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded" /> and <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed" /> events.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs.#ctor(System.Int32,System.Windows.Forms.Control,System.String,System.Object)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs" /> class.</summary>
<param name="itemIndex">The index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that contains the control that is raising the event.</param>
<param name="propertyName">The property of the control that has changed or that needs data.</param>
<param name="value">The property value that has changed.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs.Control">
<summary>Gets the child control of a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that is raising the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded" /> or <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed" /> event.</summary>
<returns>The control that is raising the event.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs.ItemIndex">
<summary>Gets the index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" /> that contains the control that is raising the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded" /> or <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed" /> event.</summary>
<returns>The index of the <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItem" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs.PropertyName">
<summary>Gets the name of the data-bound property of the control that is raising a <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded" /> or <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed" /> event.</summary>
<returns>The name of the property.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs.Value">
<summary>Gets the property value that has changed to raise a <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded" /> or <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed" /> event.</summary>
<returns>The value to assign to the property or save to a data store.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventHandler">
<summary>Represents the method that will handle the <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValueNeeded" /> and <see cref="E:Microsoft.VisualBasic.PowerPacks.DataRepeater.ItemValuePushed" /> events.</summary>
<param name="sender">The source of the event.</param>
<param name="e">An object that contains the event data.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.DataRepeaterLayoutStyles">
<summary>Provides an enumeration for specifying the orientation of items in a <see cref="T:Microsoft.VisualBasic.PowerPacks.DataRepeater" /> control.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.DataRepeaterLayoutStyles.Vertical">
<summary>Default. Items will be displayed in a vertical format. A vertical scroll bar will be displayed as necessary.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.DataRepeaterLayoutStyles.Horizontal">
<summary>Items will be displayed in a horizontal format. A horizontal scroll bar will be displayed as necessary.</summary>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.FillGradientStyle">
<summary>Specifies the fill gradient style for an <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" /> or <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" /> control.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillGradientStyle.BackwardDiagonal">
<summary>A fill gradient in which the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillColor" /> on the upper-right transitions to the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillGradientColor" /> on the lower-left.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillGradientStyle.Central">
<summary>A fill gradient in which the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillColor" /> on the outer edges of the shape transitions to the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillGradientColor" /> in the center.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillGradientStyle.ForwardDiagonal">
<summary>A fill gradient in which the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillColor" /> on the upper-left transitions to the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillGradientColor" /> on the lower-right.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillGradientStyle.Horizontal">
<summary>A fill gradient in which the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillColor" /> on the left transitions to the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillGradientColor" /> on the right.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillGradientStyle.None">
<summary>No fill gradient. The <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillColor" /> is displayed. This is the default.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillGradientStyle.Vertical">
<summary>A fill gradient in which the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillColor" /> on the top transitions to the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillGradientColor" /> on the bottom.</summary>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.FillStyle">
<summary>Specifies the fill gradient style for an <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" /> or <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" /> control.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.BackwardDiagonal">
<summary>A pattern of lines that slant from upper right to lower left.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Cross">
<summary>A pattern of horizontal and vertical lines that cross.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DarkDownwardDiagonal">
<summary>A pattern of diagonal lines that slant to the right from top points to bottom points, are spaced 50 percent closer together than <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.ForwardDiagonal" /> lines, and are double their widths. This pattern is not antialiased.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DarkHorizontal">
<summary>A pattern of horizontal lines that are spaced 50 percent closer together than <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Horizontal" /> lines and are double their widths.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DarkUpwardDiagonal">
<summary>A pattern of diagonal lines that slant to the left from top points to bottom points, are spaced 50 percent closer together than <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.BackwardDiagonal" /> lines, and are double their widths. This pattern is not antialiased.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DarkVertical">
<summary>A pattern of vertical lines that are spaced 50 percent closer together than <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Vertical" /> lines and are double their widths.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DashedDownwardDiagonal">
<summary>A pattern of dashed diagonal lines that slant to the right from top points to bottom points.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DashedHorizontal">
<summary>A pattern of dashed horizontal lines.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DashedUpwardDiagonal">
<summary>A pattern of dashed diagonal lines that slant to the left from top points to bottom points.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DashedVertical">
<summary>A pattern of dashed vertical lines.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DiagonalBrick">
<summary>A pattern that has the appearance of layered bricks that slant to the left from top points to bottom points.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DiagonalCross">
<summary>A pattern of crossing diagonal lines.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Divot">
<summary>A pattern that has the appearance of divots.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DottedDiamond">
<summary>A pattern of forward crossing diagonal lines, each of which is composed of dots that cross.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.DottedGrid">
<summary>A pattern of horizontal and vertical lines, each of which is composed of dots that cross.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.ForwardDiagonal">
<summary>A pattern of lines that slant from upper left to lower right.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Horizontal">
<summary>A pattern of horizontal lines.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.HorizontalBrick">
<summary>A pattern that has the appearance of horizontally layered bricks.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LargeCheckerBoard">
<summary>A pattern that has the appearance of a checkerboard, with squares that are double the size of the HatchStyle.SmallCheckerBoard squares.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LargeConfetti">
<summary>A pattern that has the appearance of confetti and is composed of larger pieces than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.SmallConfetti" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LightDownwardDiagonal">
<summary>A pattern of diagonal lines that slant to the right from top points to bottom points and are spaced 50 percent farther apart than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.BackwardDiagonal" />. This pattern is not antialiased.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LightHorizontal">
<summary>A pattern of horizontal lines that are spaced 50 percent farther apart than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Horizontal" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LightUpwardDiagonal">
<summary>A pattern of diagonal lines that slant to the left from top points to bottom points and are spaced 50 percent farther apart than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.BackwardDiagonal" />. This pattern is not antialiased.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LightVertical">
<summary>A pattern of vertical lines that are spaced 50 percent farther apart than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Vertical" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.NarrowHorizontal">
<summary>A pattern of horizontal lines that are spaced 75 percent closer together than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Horizontal" /> (or 25 percent closer together than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LightHorizontal" />).</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.NarrowVertical">
<summary>A pattern of vertical lines that are spaced 75 percent closer together than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Vertical" /> (or 25 percent closer together than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.LightVertical" />).</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.OutlineShapedDiamond">
<summary>A pattern of crossing diagonal lines that that are not antialiased.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent05">
<summary>A 5-percent dot pattern. The ratio of foreground color to background color is 5:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent10">
<summary>A 10-percent dot pattern. The ratio of foreground color to background color is 10:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent20">
<summary>A 20-percent dot pattern. The ratio of foreground color to background color is 20:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent25">
<summary>A 25-percent dot pattern. The ratio of foreground color to background color is 25:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent30">
<summary>A 30-percent dot pattern. The ratio of foreground color to background color is 30:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent40">
<summary>A 40-percent dot pattern. The ratio of foreground color to background color is 40:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent50">
<summary>A 50-percent dot pattern. The ratio of foreground color to background color is 50:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent60">
<summary>A 60-percent dot pattern. The ratio of foreground color to background color is 60:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent70">
<summary>A 70-percent dot pattern. The ratio of foreground color to background color is 70:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent75">
<summary>A 75-percent dot pattern. The ratio of foreground color to background color is 75:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent80">
<summary>A 80-percent dot pattern. The ratio of foreground color to background color is 80:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Percent90">
<summary>A 90-percent dot pattern. The ratio of foreground color to background color is 90:100.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Plaid">
<summary>A plaid pattern.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Shingle">
<summary>A pattern that has the appearance of diagonally layered shingles that slant to the right from top points to bottom points.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.SmallCheckerBoard">
<summary>A pattern that has the appearance of a checkerboard.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.SmallConfetti">
<summary>A pattern that has the appearance of confetti.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.SmallGrid">
<summary> A pattern of horizontal and vertical lines that cross and are spaced 50 percent closer together than those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Cross" />.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Solid">
<summary>An opaque background in the color specified by the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.FillColor" /> property.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.SolidDiamond">
<summary>A pattern that has the appearance of a checkerboard positioned diagonally.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Sphere">
<summary>A pattern that has the appearance of spheres laid adjacent to each other.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent">
<summary>No pattern. If the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.BackStyle" /> property is set to <see cref="F:Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque" />, the <see cref="P:Microsoft.VisualBasic.PowerPacks.SimpleShape.BackColor" /> will be displayed.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Trellis">
<summary>A pattern that has the appearance of a trellis.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Vertical">
<summary>A pattern of vertical lines.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Wave">
<summary>A pattern of horizontal lines that are composed of tildes (~).</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.Weave">
<summary>A pattern that has the appearance of a woven material.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.WideDownwardDiagonal">
<summary>A pattern of diagonal lines that slant to the right from top points to bottom points, have the same spacing as those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.ForwardDiagonal" />, and are triple their width. This pattern is not antialiased.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.WideUpwardDiagonal">
<summary>A pattern of diagonal lines that slant to the left from top points to bottom points, have the same spacing as those of <see cref="F:Microsoft.VisualBasic.PowerPacks.FillStyle.BackwardDiagonal" />, and are triple their width. This pattern is not antialiased.</summary>
</member>
<member name="F:Microsoft.VisualBasic.PowerPacks.FillStyle.ZigZag">
<summary>A pattern of horizontal lines that are composed of zigzags.</summary>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.LineShape">
<summary>Represents a control displayed as a horizontal, vertical, or diagonal line.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.#ctor(Microsoft.VisualBasic.PowerPacks.ShapeContainer)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> class, specifying the <see cref="T:Microsoft.VisualBasic.PowerPacks.ShapeContainer" /> where it will be parented.</summary>
<param name="parent">A <see cref="T:Microsoft.VisualBasic.PowerPacks.ShapeContainer" /> where the shape will be parented</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> class, specifying the coordinates for the line.</summary>
<param name="x1">The X (horizontal) coordinate of the starting point of the line.</param>
<param name="y1">The Y (vertical) coordinate of the starting point of the line.</param>
<param name="x2">The X (horizontal) coordinate of the ending point of the line.</param>
<param name="y2">The Y (vertical) coordinate of the ending point of the line.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.CreateAccessibilityInstance">
<summary>Creates an object to provide information that accessibility applications use to adjust an application's user interface (UI) for users who have disabilities.</summary>
<returns>A <see cref="T:System.Windows.Forms.AccessibleObject" /> class.</returns>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)">
<summary>Supports drawing to the specified bitmap.</summary>
<param name="bitmap">The <see cref="T:System.Drawing.Bitmap" /> to be drawn to.</param>
<param name="targetBounds">The <see cref="T:System.Drawing.Rectangle" /> within which the <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> is drawn.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.LineShape.EndPoint">
<summary>Gets or sets the ending coordinates of a line drawn by a <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control.</summary>
<returns>A <see cref="T:System.Drawing.Point" /> structure that represents the ending coordinates of the line.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.LineShape.EndPointChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.LineShape.EndPoint" /> property value changes.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.HitTest(System.Int32,System.Int32)">
<summary>Gets information about the <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control at the specified point on the screen.</summary>
<returns>true if the <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control is located at the specified coordinates; otherwise false.</returns>
<param name="x">The horizontal screen coordinate.</param>
<param name="y">The vertical screen coordinate.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.OnEndPointChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.LineShape.EndPointChanged" /> event.</summary>
<param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.Shape.Paint" /> event.</summary>
<param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.OnStartPointChanged(System.EventArgs)">
<summary>Raises the <see cref="E:Microsoft.VisualBasic.PowerPacks.LineShape.StartPointChanged" /> event.</summary>
<param name="e">A <see cref="T:System.EventArgs" /> that contains the event data.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.LineShape.Scale(System.Drawing.SizeF)">
<summary>Resizes the <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control by the specified scaling factor.</summary>
<param name="factor">A <see cref="T:System.Drawing.SizeF" /> structure that contains the X (horizontal) and Y (vertical) scaling factors.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.LineShape.StartPoint">
<summary>Gets or sets the starting coordinates of a line drawn by a <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control.</summary>
<returns>A <see cref="T:System.Drawing.Point" /> structure that represents the starting coordinates of the line.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.LineShape.StartPointChanged">
<summary>Occurs when the <see cref="P:Microsoft.VisualBasic.PowerPacks.LineShape.StartPoint" /> property value changes.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.LineShape.X1">
<summary>Gets or sets the X coordinate of the starting point of a line drawn by a <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control.</summary>
<returns>An Integer that represents the X (horizontal) coordinate of the starting point of the line.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.LineShape.X2">
<summary>Gets or sets the X coordinate of the ending point of a line drawn by a <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control.</summary>
<returns>An Integer that represents the X (horizontal) coordinate of the ending point of the line.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.LineShape.Y1">
<summary>Gets or sets the Y coordinate of the starting point of a line drawn by a <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control.</summary>
<returns>An Integer that represents the Y (vertical) coordinate of the starting point of the line.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.LineShape.Y2">
<summary>Gets or sets the Y coordinate of the ending point of a line drawn by a <see cref="T:Microsoft.VisualBasic.PowerPacks.LineShape" /> control.</summary>
<returns>An Integer that represents the Y (vertical) coordinate of the ending point of the line.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.OvalShape">
<summary>Represents a control displayed as a circle or oval.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.OvalShape.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.OvalShape.#ctor(Microsoft.VisualBasic.PowerPacks.ShapeContainer)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" /> class, specifying the <see cref="T:Microsoft.VisualBasic.PowerPacks.ShapeContainer" /> in which it will be contained.</summary>
<param name="parent">A <see cref="T:Microsoft.VisualBasic.PowerPacks.ShapeContainer" /> in which the <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" /> will be contained.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.OvalShape.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" /> class, specifying its location and size.</summary>
<param name="width">An Integer representing the width (in pixels)of the <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" />.</param>
<param name="height">An Integer representing the height (in pixels)of the <see cref="T:Microsoft.VisualBasic.PowerPacks.OvalShape" />.</param>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.RectangleShape">
<summary>Represents a control displayed as a square, rectangle, rounded square, or rounded rectangle.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.RectangleShape.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.RectangleShape.#ctor(Microsoft.VisualBasic.PowerPacks.ShapeContainer)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" /> class, specifying the <see cref="T:Microsoft.VisualBasic.PowerPacks.ShapeContainer" /> that will contain it.</summary>
<param name="parent">A <see cref="T:Microsoft.VisualBasic.PowerPacks.ShapeContainer" /> that will contain the <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" />.</param>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.RectangleShape.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" /> class, specifying its location and size.</summary>
<param name="width">An Integer representing the width (in pixels) of the <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" />.</param>
<param name="height">An Integer representing the height (in pixels) of the <see cref="T:Microsoft.VisualBasic.PowerPacks.RectangleShape" />.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.RectangleShape.CornerRadius">
<summary>Gets or sets the radius for the corners of rounded rectangle and rounded square shapes.</summary>
<returns>An Integer representing the radius. The default is 0, or no radius.</returns>
</member>
<member name="T:Microsoft.VisualBasic.PowerPacks.Shape">
<summary>Implements the basic functionality common to line and shape controls.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.Shape.#ctor">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.Shape" /> class.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.Shape.#ctor(Microsoft.VisualBasic.PowerPacks.ShapeContainer)">
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.PowerPacks.Shape" /> class.</summary>
<param name="parent">The <see cref="T:Microsoft.VisualBasic.PowerPacks.ShapeContainer" /> to be the parent of the shape.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.AccessibilityObject">
<summary>Gets the <see cref="T:System.Windows.Forms.AccessibleObject" /> that is assigned to the control.</summary>
<returns>The <see cref="T:System.Windows.Forms.AccessibleObject" /> that is assigned to the control.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.AccessibleDefaultActionDescription">
<summary>Gets or sets the default action description of the control for use by accessibility client applications.</summary>
<returns>The default action description of the control for use by accessibility client applications. For <see cref="T:Microsoft.VisualBasic.PowerPacks.Shape" />, the default action is <see cref="E:Microsoft.VisualBasic.PowerPacks.Shape.Click" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.AccessibleDescription">
<summary>Gets or sets the description of the control that is used by accessibility client applications.</summary>
<returns>A <see cref="T:System.String" /> that contains the description of the control that is used by accessibility client applications. The default is a null reference (Nothing in Visual Basic).</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.AccessibleName">
<summary>Gets or sets the name of the control that is used by accessibility client applications.</summary>
<returns>A <see cref="T:System.String" /> representing the name of the control that is used by accessibility client applications. The default is a null reference (Nothing in Visual Basic).</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.AccessibleRole">
<summary>Gets or sets the accessible role of the control.</summary>
<returns>One of the values of <see cref="T:System.Windows.Forms.AccessibleRole" />. The default is <see cref="F:System.Windows.Forms.AccessibleRole.Default" />.</returns>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The value assigned is not one of the <see cref="T:System.Windows.Forms.AccessibleRole" /> values.</exception>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.Anchor">
<summary>Gets or sets the edges of the container to which a shape is bound, and determines how a shape is resized when its parent is resized.</summary>
<returns>A bitwise combination of the <see cref="T:System.Windows.Forms.AnchorStyles" /> values. The default is Top and Left.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.BorderColor">
<summary>Gets or sets the color of the border of a shape or line control.</summary>
<returns>A <see cref="T:System.Drawing.Color" /> structure representing the color of the border of the shape or line. The default is the value of <see cref="P:Microsoft.VisualBasic.PowerPacks.Shape.DefaultBorderColor" />.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.BorderStyle">
<summary>Gets or sets the border style for a shape or line control. </summary>
<returns>A <see cref="T:System.Drawing.Drawing2D.DashStyle" /> value that represents the appearance of the border. The default value is Solid.</returns>
<exception cref="T:System.ComponentModel.InvalidEnumArgumentException">The specified value when you set this property is not a valid <see cref="T:System.Drawing.Drawing2D.DashStyle" /> value.</exception>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.BorderWidth">
<summary>Gets or sets the width of a line or shape control's border.</summary>
<returns>An Integer representing the border width in pixels. The default value is 1.</returns>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.Shape.BringToFront">
<summary>Brings a line or shape control to the front of the z-order.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.CanFocus">
<summary>Gets a value indicating whether a line or shape control can receive focus.</summary>
<returns>true if the control can receive focus; otherwise, false. The default is true.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.CanSelect">
<summary>Gets a value indicating whether a line or shape control can be selected.</summary>
<returns>true if the control can be selected; otherwise, false. The default is true.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.Shape.ChangeUICues">
<summary>Occurs when the focus or keyboard user interface (UI) cues change.</summary>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.Shape.Click">
<summary>Occurs when the shape is clicked.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.Container">
<summary>Gets the <see cref="T:System.ComponentModel.IContainer" /> that contains the <see cref="T:System.ComponentModel.Component" />.</summary>
<returns>A null reference (Nothing in Visual Basic).</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.ContainsFocus">
<summary>Gets a value indicating whether a line or shape control currently has the input focus.</summary>
<returns>true if the control currently has the input focus; otherwise, false.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.ContextMenu">
<summary>Gets or sets the shortcut menu associated with a line or shape control.</summary>
<returns>A <see cref="T:System.Windows.Forms.ContextMenu" /> that represents the shortcut menu for the control, or a null reference (Nothing in Visual Basic) if there is no <see cref="T:System.Windows.Forms.ContextMenu" /> assigned. The default is a null reference (Nothing in Visual Basic).</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.Shape.ContextMenuChanged">
<summary>Occurs when the value of the <see cref="P:Microsoft.VisualBasic.PowerPacks.Shape.ContextMenu" /> property changes.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.ContextMenuStrip">
<summary>Gets or sets the <see cref="T:System.Windows.Forms.ContextMenuStrip" /> associated with a line or shape control.</summary>
<returns>The <see cref="T:System.Windows.Forms.ContextMenuStrip" /> for the control, or a null reference (Nothing in Visual Basic) if there is no <see cref="T:System.Windows.Forms.ContextMenuStrip" /> assigned. The default is a null reference (Nothing in Visual Basic).</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.Shape.ContextMenuStripChanged">
<summary>Occurs when the value of the <see cref="P:Microsoft.VisualBasic.PowerPacks.Shape.ContextMenuStrip" /> property changes.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.Shape.CreateAccessibilityInstance">
<summary>Creates a new accessibility object for a line or shape control.</summary>
<returns>Returns an <see cref="T:System.Windows.Forms.AccessibleObject" /> class.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.Created">
<summary>Gets a value indicating whether a line or shape control has been created.</summary>
<returns>true if the control has been created; otherwise, false.</returns>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.Cursor">
<summary>Gets or sets the cursor that is displayed when the mouse pointer is resting on a line or shape control.</summary>
<returns>A <see cref="T:System.Windows.Forms.Cursor" /> that represents the cursor to display when the mouse pointer is resting on the control.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.Shape.CursorChanged">
<summary>Occurs when the value of the <see cref="P:Microsoft.VisualBasic.PowerPacks.Shape.Cursor" /> property changes.</summary>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.DefaultBorderColor">
<summary>Gets the default border color for a line or shape control.</summary>
<returns>The default border <see cref="T:System.Drawing.Color" /> of the control. The default is <see cref="P:System.Windows.Forms.Control.DefaultForeColor" />.</returns>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.Shape.Dispose(System.Boolean)">
<summary>Releases the unmanaged resources used by a line or shape control and optionally releases the managed resources.</summary>
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
</member>
<member name="P:Microsoft.VisualBasic.PowerPacks.Shape.Disposing">
<summary>Gets a value indicating whether the base <see cref="T:Microsoft.VisualBasic.PowerPacks.Shape" /> class is disposing.</summary>
<returns>true if the base <see cref="T:Microsoft.VisualBasic.PowerPacks.Shape" /> class is disposing; otherwise, false.</returns>
</member>
<member name="E:Microsoft.VisualBasic.PowerPacks.Shape.DoubleClick">
<summary>Occurs when the shape is double-clicked.</summary>
</member>
<member name="M:Microsoft.VisualBasic.PowerPacks.Shape.DrawToBitmap(System.Drawing.Bitmap,System.Drawing.Rectangle)">
<summary>Supports rendering to the specified bitmap.</summary>