-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDevAge.SourceGrid3.xml
More file actions
7477 lines (7410 loc) · 328 KB
/
Copy pathDevAge.SourceGrid3.xml
File metadata and controls
7477 lines (7410 loc) · 328 KB
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"?>
<doc>
<assembly>
<name>DevAge.SourceGrid3</name>
</assembly>
<members>
<member name="T:SourceGrid3.Cells.Controllers.BindProperty">
<summary>
Summary description for BindProperty.
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.ControllerBase">
<summary>
Implements all the method of the controller interface without any implementation
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.IController">
<summary>
Represents a behavior of a cell.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnContextMenuPopUp(SourceGrid3.CellContext,SourceGrid3.ContextMenuEventArgs)">
<summary>
Fired when a context menu is showed
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnMouseDown(SourceGrid3.CellContext,System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnMouseUp(SourceGrid3.CellContext,System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnMouseMove(SourceGrid3.CellContext,System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnMouseEnter(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnMouseLeave(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnKeyUp(SourceGrid3.CellContext,System.Windows.Forms.KeyEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnKeyDown(SourceGrid3.CellContext,System.Windows.Forms.KeyEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnKeyPress(SourceGrid3.CellContext,System.Windows.Forms.KeyPressEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnDoubleClick(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnClick(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnFocusLeaving(SourceGrid3.CellContext,System.ComponentModel.CancelEventArgs)">
<summary>
Fired before the cell leave the focus, you can put the e.Cancel = true to cancel the leave operation.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnFocusLeft(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when the cell has left the focus.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnFocusEntering(SourceGrid3.CellContext,System.ComponentModel.CancelEventArgs)">
<summary>
Fired when the focus is entering in the specified cell. You can put the e.Cancel = true to cancel the focus operation.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnFocusEntered(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when the focus enter in the specified cell.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnValueChanging(SourceGrid3.CellContext,DevAge.ComponentModel.ValueEventArgs)">
<summary>
Fired before the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnValueChanged(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired after the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnEditStarting(SourceGrid3.CellContext,System.ComponentModel.CancelEventArgs)">
<summary>
Fired when the StartEdit is called and before the cell start the edit operation. You can set the Cancel = true to stop editing.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnEditStarted(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when the StartEdit is sucesfully called.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnEditEnded(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when the EndEdit is called. You can read the Cancel property to determine if the edit is completed. If you change the cancel property there is no effect.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.CanReceiveFocus(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Returns true if the current cell can receive the focus. If only one behavior return false the return value is false.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnSelectionAdding(SourceGrid3.CellContext,SourceGrid3.RangeRegionChangingEventArgs)">
<summary>
Fired before the cell is added to the selection.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnSelectionAdded(SourceGrid3.CellContext,SourceGrid3.RangeRegionEventArgs)">
<summary>
Fired after the cell is added to the selection.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnSelectionRemoving(SourceGrid3.CellContext,SourceGrid3.RangeRegionChangingEventArgs)">
<summary>
Fired before the cell is removed to the selection.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnSelectionRemoved(SourceGrid3.CellContext,SourceGrid3.RangeRegionEventArgs)">
<summary>
Fired after the cell is removed to the selection.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnDragDrop(SourceGrid3.CellContext,System.Windows.Forms.DragEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnDragEnter(SourceGrid3.CellContext,System.Windows.Forms.DragEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnDragLeave(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnDragOver(SourceGrid3.CellContext,System.Windows.Forms.DragEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.IController.OnGiveFeedback(SourceGrid3.CellContext,System.Windows.Forms.GiveFeedbackEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerBase.OnValueChanging(SourceGrid3.CellContext,DevAge.ComponentModel.ValueEventArgs)">
<summary>
Fired before the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerBase.OnValueChanged(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired after the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.BindProperty.#ctor(System.Reflection.PropertyInfo,System.Object)">
<summary>
Constructor
</summary>
<param name="p_Property">Property of the object that you want to lint to the cell. When the value of the cell changed this behavior call automatically this property.</param>
<param name="p_LinkObject">Instance of the object to link</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.BindProperty.OnValueChanged(SourceGrid3.CellContext,System.EventArgs)">
<summary>
OnValueChanged
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.BindProperty.BindValueAtProperty(System.Reflection.PropertyInfo,System.Object)">
<summary>
Bind the cell's value with the property p_Property of the object p_LinkObject
when the cell's value change also the property change
</summary>
<param name="p_Property">linked property</param>
<param name="p_LinkObject">Can be null to call static property</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.BindProperty.UnBindValueAtProperty">
<summary>
UnBind the cell with the property
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.Button">
<summary>
Button controller is used to executed a specific action when the user click on a cell or when the user press the Enter or Space key.
Is normally used with the Link or Button Cell.
Override the OnExecuted to add your code or use the Executed event.
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.Cell">
<summary>
Common behavior of the cell. This controller can be shared between multiple cells and is usually used as the default Grid.Controller. Removing this controller can cause unexpected behaviors.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.Cell.Default">
<summary>
The default behavior of a cell.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnKeyDown(SourceGrid3.CellContext,System.Windows.Forms.KeyEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnKeyPress(SourceGrid3.CellContext,System.Windows.Forms.KeyPressEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnDoubleClick(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnClick(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnFocusEntered(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnFocusLeft(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnValueChanged(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when the SetValue method is called.
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnEditEnded(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when editing is ended
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnSelectionAdding(SourceGrid3.CellContext,SourceGrid3.RangeRegionChangingEventArgs)">
<summary>
Fired before the cell is added to the selection.
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnSelectionAdded(SourceGrid3.CellContext,SourceGrid3.RangeRegionEventArgs)">
<summary>
Fired after the cell is added to the selection.
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnSelectionRemoving(SourceGrid3.CellContext,SourceGrid3.RangeRegionChangingEventArgs)">
<summary>
Fired before the cell is removed to the selection.
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnSelectionRemoved(SourceGrid3.CellContext,SourceGrid3.RangeRegionEventArgs)">
<summary>
Fired after the cell is removed to the selection.
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnDragDrop(SourceGrid3.CellContext,System.Windows.Forms.DragEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnDragEnter(SourceGrid3.CellContext,System.Windows.Forms.DragEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnDragLeave(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnDragOver(SourceGrid3.CellContext,System.Windows.Forms.DragEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Cell.OnGiveFeedback(SourceGrid3.CellContext,System.Windows.Forms.GiveFeedbackEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="T:SourceGrid3.Cells.Controllers.CheckBox">
<summary>
Summary description for BehaviorModelCheckBox. This behavior can be shared between multiple cells.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.CheckBox.Default">
<summary>
Default behavior checkbox
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.CheckBox.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.CheckBox.#ctor(System.Boolean)">
<summary>
Constructor
</summary>
<param name="p_bAutoChangeValueOfSelectedCells">Indicates if this cells when checked or uncheck must change also the value of the selected cells of type CellCheckBox.</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.CheckBox.UIChangeChecked(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Toggle the value of the current cell and if AutoChangeValueOfSelectedCells is true of all the selected cells.
Simulate an edit operation.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="P:SourceGrid3.Cells.Controllers.CheckBox.AutoChangeValueOfSelectedCells">
<summary>
Indicates if this cells when checked or uncheck must change also the value of the selected cells of type CellCheckBox. Default is false
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.ColumnFocus">
<summary>
ColumnFocus controller overrides the OnFocusEntering method and set the Focus on the Column. This controller is usually used on the Column Header when the Sort is disabled.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.ColumnFocus.Default">
<summary>
Default controller to select all the column
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.ColumnSelector">
<summary>
Summary description for FullColumnSelection.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.ColumnSelector.Default">
<summary>
Default controller to select all the column
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.ContextMenu">
<summary>
Allow to customize the contextmenu of a cell. This class read the contextmenu from the ICellContextMenu.GetContextMenu. This behavior can be shared between multiple cells.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.ContextMenu.Default">
<summary>
Default tooltiptext
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.FindController(System.Type)">
<summary>
Returns null if not exist
</summary>
<param name="modelType"></param>
<returns></returns>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.OnValueChanging(SourceGrid3.CellContext,DevAge.ComponentModel.ValueEventArgs)">
<summary>
Fired before the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.OnValueChanged(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired after the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.OnEditStarting(SourceGrid3.CellContext,System.ComponentModel.CancelEventArgs)">
<summary>
Fired when the StartEdit is called and before the cell start the edit operation. You can set the Cancel = true to stop editing.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.OnEditStarted(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when the StartEdit is sucesfully called.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.OnEditEnded(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired when the EndEdit is called. You can read the Cancel property to determine if the edit is completed. If you change the cancel property there is no effect.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList">
<summary>
A collection of elements of type IController. Only one instance of the same controller is allowed.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.#ctor">
<summary>
Initializes a new empty instance of the ControllerContainer class.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.#ctor(SourceGrid3.Cells.Controllers.IController[])">
<summary>
Initializes a new instance of the ControllerContainer class, containing elements
copied from an array.
</summary>
<param name="items">
The array whose elements are to be added to the new ControllerContainer.
</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.#ctor(SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList)">
<summary>
Initializes a new instance of the ControllerContainer class, containing elements
copied from another instance of ControllerContainer
</summary>
<param name="items">
The ControllerContainer whose elements are to be added to the new ControllerContainer.
</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.AddRange(SourceGrid3.Cells.Controllers.IController[])">
<summary>
Adds the elements of an array to the end of this ControllerContainer.
</summary>
<param name="items">
The array whose elements are to be added to the end of this ControllerContainer.
</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.AddRange(SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList)">
<summary>
Adds the elements of another ControllerContainer to the end of this ControllerContainer.
</summary>
<param name="items">
The ControllerContainer whose elements are to be added to the end of this ControllerContainer.
</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.Add(SourceGrid3.Cells.Controllers.IController)">
<summary>
Adds an instance of type IController to the end of this ControllerContainer. Check if the element already exists.
</summary>
<param name="value">
The IController to be added to the end of this ControllerContainer.
</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.Contains(SourceGrid3.Cells.Controllers.IController)">
<summary>
Determines whether a specfic IController value is in this ControllerContainer.
</summary>
<param name="value">
The IController value to locate in this ControllerContainer.
</param>
<returns>
true if value is found in this ControllerContainer;
false otherwise.
</returns>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.IndexOf(SourceGrid3.Cells.Controllers.IController)">
<summary>
Return the zero-based index of the first occurrence of a specific value
in this ControllerContainer
</summary>
<param name="value">
The IController value to locate in the ControllerContainer.
</param>
<returns>
The zero-based index of the first occurrence of the _ELEMENT value if found;
-1 otherwise.
</returns>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.Insert(System.Int32,SourceGrid3.Cells.Controllers.IController)">
<summary>
Inserts an element into the ControllerContainer at the specified index. Check if the element already exists.
</summary>
<param name="index">
The index at which the IController is to be inserted.
</param>
<param name="value">
The IController to insert.
</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.Remove(SourceGrid3.Cells.Controllers.IController)">
<summary>
Removes the first occurrence of a specific IController from this ControllerContainer.
</summary>
<param name="value">
The IController value to remove from this ControllerContainer.
</param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the elements of this ControllerContainer.
</summary>
<returns>
An object that implements System.Collections.IEnumerator.
</returns>
</member>
<member name="P:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.Item(System.Int32)">
<summary>
Gets or sets the IController at the given index in this ControllerContainer.
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.ControllerContainer.ControllerList.Enumerator">
<summary>
Type-specific enumeration class, used by ControllerContainer.GetEnumerator.
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.CustomEvents">
<summary>
In this Controller are defined all the events fired by the Controller. Each event has a sender object of type CellContext that you can use to read the cell informations.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.CustomEvents.OnValueChanging(SourceGrid3.CellContext,DevAge.ComponentModel.ValueEventArgs)">
<summary>
Fired before the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.CustomEvents.OnValueChanged(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Fired after the value of the cell is changed.
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="E:SourceGrid3.Cells.Controllers.CustomEvents.ValueChanging">
<summary>
Fired before the value of the cell is changed.
</summary>
</member>
<member name="E:SourceGrid3.Cells.Controllers.CustomEvents.ValueChanged">
<summary>
Fired after the value of the cell is changed.
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.FullColumnSelection">
<summary>
Summary description for FullColumnSelection.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.FullColumnSelection.Default">
<summary>
Default controller to select all the column
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.FullRowSelection">
<summary>
Summary description for FullRowSelection.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.FullRowSelection.Default">
<summary>
Default controller to select all the row
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.MouseCursor">
<summary>
Allow to customize the cursor of a cell. The cell must implement ICellCursor. This behavior can be shared between multiple cells.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.MouseCursor.ApplyCursor(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Change the cursor with the cursor of the cell
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.MouseCursor.ResetCursor(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Reset the original cursor
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.MouseInvalidate">
<summary>
A behavior that invalidate the cell on mouse events
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.MouseInvalidate.Default">
<summary>
Default implementation.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.MouseInvalidate.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.MouseInvalidate.OnMouseDown(SourceGrid3.CellContext,System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.MouseInvalidate.OnMouseUp(SourceGrid3.CellContext,System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.MouseInvalidate.OnMouseEnter(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.MouseInvalidate.OnMouseLeave(SourceGrid3.CellContext,System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="T:SourceGrid3.Cells.Controllers.Resizable">
<summary>
Implement the mouse resize features of a cell. This behavior can be shared between multiple cells.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.Resizable.ResizeBoth">
<summary>
Resize both width nd height behavior
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.Resizable.ResizeWidth">
<summary>
Resize width behavior
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.Resizable.ResizeHeight">
<summary>
Resize height behavior
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.Resizable.LogicalBorder">
<summary>
Border used to calculate the region where the resize is enabled.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.Resizable.#ctor(SourceGrid3.CellResizeMode)">
<summary>
Constructor
</summary>
<param name="p_Mode"></param>
</member>
<member name="P:SourceGrid3.Cells.Controllers.Resizable.ResizeMode">
<summary>
Resize mode of the cell
</summary>
</member>
<member name="P:SourceGrid3.Cells.Controllers.Resizable.IsWidthResizing">
<summary>
Indicates if the behavior is currently resizing a cell width
</summary>
</member>
<member name="P:SourceGrid3.Cells.Controllers.Resizable.IsHeightResizing">
<summary>
Indicates if the behavior is currently resizing a cell height
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.RowFocus">
<summary>
RowFocus controller overrides the OnFocusEntering method and set the Focus on the Row. This controller is usually used on the Row Header. This controller also add an arror Cursor when the mouse is over the cell.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.RowFocus.Default">
<summary>
Default controller to select all the row
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.RowFocus.LogicalBorder">
<summary>
Border used to calculate the region to enable the row selection
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.RowSelector">
<summary>
Summary description for FullColumnSelection.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.RowSelector.Default">
<summary>
Default controller to select all the column
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.SortableHeader">
<summary>
A behavior that support sort and resize. Once created cannot be modified. When calculated automatically the range to sort is all the grid range without the rows minor of the current row and the range header is all the grid range with the rows minor or equal of the current row
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.SortableHeader.Default">
<summary>
Column header behavior with sort and resize support, same as SortResizeHeader.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.SortableHeader.LogicalBorder">
<summary>
Border used to calculate the region where the sort is enabled.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.SortableHeader.#cctor">
<summary>
Static constructor
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.SortableHeader.#ctor(SourceGrid3.IRangeLoader,SourceGrid3.IRangeLoader)">
<summary>
Constructor
</summary>
<param name="p_RangeToSort">If null then the range is automatically calculated.</param>
<param name="p_HeaderRange">If null then the range is automatically calculated.</param>
</member>
<member name="F:SourceGrid3.Cells.Controllers.SortableHeader.m_RangeToSort">
<summary>
Range to sort
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.SortableHeader.m_HeaderRange">
<summary>
Header range (can be null).
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.SortableHeader.IsSortEnable(SourceGrid3.CellContext)">
<summary>
Indicates if for the specified cell the sort is enabled.
</summary>
<param name="sender"></param>
<returns></returns>
</member>
<member name="M:SourceGrid3.Cells.Controllers.SortableHeader.SortColumn(SourceGrid3.CellContext,System.Boolean,System.Collections.IComparer)">
<summary>
Sort the current column. If the range contains all the columns this method move directly the row object otherwise move each cell.
</summary>
<param name="sender"></param>
<param name="p_bAscending"></param>
<param name="p_Comparer"></param>
</member>
<member name="P:SourceGrid3.Cells.Controllers.SortableHeader.RangeToSort">
<summary>
Range to sort. If null and EnableSort is true the range is automatically calculated.
</summary>
</member>
<member name="P:SourceGrid3.Cells.Controllers.SortableHeader.RangeHeader">
<summary>
Header range. If null and EnableSort is true the range is automatically calculated.
</summary>
</member>
<member name="T:SourceGrid3.Cells.Controllers.ToolTipText">
<summary>
Allow to customize the tooltiptext of a cell. This class read the tooltiptext from the ICellToolTipText.GetToolTipText. This behavior can be shared between multiple cells.
</summary>
</member>
<member name="F:SourceGrid3.Cells.Controllers.ToolTipText.Default">
<summary>
Default tooltiptext
</summary>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ToolTipText.ApplyToolTipText(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Change the cursor with the cursor of the cell
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Controllers.ToolTipText.ResetToolTipText(SourceGrid3.CellContext,System.EventArgs)">
<summary>
Reset the original cursor
</summary>
<param name="e"></param>
</member>
<member name="T:SourceGrid3.Cells.Controllers.Unselectable">
<summary>
Implements a behavior that cannot receive the focus. This behavior can be shared between multiple cells.
</summary>
</member>
<member name="T:SourceGrid3.Cells.Editors.ComboBox">
<summary>
Editor for a ComboBox (using ComboBoxEx control)
</summary>
</member>
<member name="T:SourceGrid3.Cells.Editors.EditorControlBase">
<summary>
The base class for all the editors that have a control
</summary>
</member>
<member name="T:SourceGrid3.Cells.Editors.EditorBase">
<summary>
Represents the base class of a DataModel. This DataModel support conversion but doesn't provide any user interface editor.
</summary>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.#ctor(System.Type)">
<summary>
Construct a Model. Based on the Type specified the constructor populate StringEditor property
</summary>
<param name="p_Type">The type of this model</param>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.SetEditCell(SourceGrid3.CellContext)">
<summary>
Set the current editing cell, for an editor only one cell can be in editing state
</summary>
<param name="cellContext"></param>
</member>
<member name="F:SourceGrid3.Cells.Editors.EditorBase.m_ErrorString">
<summary>
Error rappresentation
</summary>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.IsErrorString(System.String)">
<summary>
Returns true if the string passed is equal to the error string rappresentation
</summary>
<param name="p_str"></param>
<returns></returns>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.InternalStartEdit(SourceGrid3.CellContext)">
<summary>
Start editing the cell passed. Do not call this method for start editing a cell, you must use CellContext.StartEdit.
</summary>
<param name="cellContext">Cell to start edit</param>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.ApplyEdit">
<summary>
Apply edited value
</summary>
<returns></returns>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.InternalEndEdit(System.Boolean)">
<summary>
Cancel the edit action. Do not call this method directly, use the CellContext.EndEdit instead.
</summary>
<param name="cancel">True to cancel the editing and return to normal mode, false to call automatically ApplyEdit and terminate editing</param>
<returns>Returns true if the cell terminate the editing mode</returns>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.GetEditedValue">
<summary>
Returns the new value edited with the custom control
</summary>
<returns></returns>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.ClearCell(SourceGrid3.CellContext)">
<summary>
Clear the value of the cell using the default value
</summary>
<param name="cellContext"></param>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.SetCellValue(SourceGrid3.CellContext,System.Object)">
<summary>
Change the value of the cell applying the rule of the current editor. Is recommend to use this method to simulate a edit operation and to validate the cell value using the current model.
Doesn't call the StartEdit and EndEdit but change directly the cell value. Use the CellContext.Start edit to begin an edit operation.
</summary>
<param name="cellContext">Cell to change the value</param>
<param name="p_NewValue"></param>
<returns>returns true if the value passed is valid and has been applied to the cell</returns>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.OnValidated(SourceGrid3.CellContextEventArgs)">
<summary>
Functions used when the validating operation is finished
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.OnValidating(SourceGrid3.ValidatingCellEventArgs)">
<summary>
Validating the value of the cell.
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.OnEditException(SourceGrid3.ExceptionEventArgs)">
<summary>
Event fired when an exception is throw in the Validated event or in an editing method
</summary>
<param name="e"></param>
</member>
<member name="M:SourceGrid3.Cells.Editors.EditorBase.SendCharToEditor(System.Char)">
<summary>
Used to send some keyboard keys to the active editor. It is only valid when there is an active edit operations.
</summary>
<param name="key"></param>
</member>
<member name="P:SourceGrid3.Cells.Editors.EditorBase.EditCellContext">
<summary>
Cell in editing, if null no cell is in editing state
</summary>
</member>
<member name="P:SourceGrid3.Cells.Editors.EditorBase.EditCell">
<summary>
Cell in editing, if null no cell is in editing state
</summary>
</member>
<member name="P:SourceGrid3.Cells.Editors.EditorBase.EditPosition">
<summary>
Cell in editing, if Empty no cell is in editing state
</summary>
</member>
<member name="P:SourceGrid3.Cells.Editors.EditorBase.ErrorString">
<summary>
String used when error occurred
</summary>
</member>
<member name="P:SourceGrid3.Cells.Editors.EditorBase.EnableEdit">
<summary>
Enable or disable the cell editor (if disable no visual edit is allowed)
</summary>