-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathXPTable.xml
17071 lines (16965 loc) · 775 KB
/
XPTable.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"?>
<doc>
<assembly>
<name>XPTable</name>
</assembly>
<members>
<member name="T:XPTable.Editors.CellEditor">
<summary>
Base class for Cell editors
</summary>
</member>
<member name="E:XPTable.Editors.CellEditor.BeginEdit">
<summary>
Occurs when the CellEditor begins editing a Cell
</summary>
</member>
<member name="E:XPTable.Editors.CellEditor.EndEdit">
<summary>
Occurs when the CellEditor stops editing a Cell
</summary>
</member>
<member name="E:XPTable.Editors.CellEditor.CancelEdit">
<summary>
Occurs when the editing of a Cell is cancelled
</summary>
</member>
<member name="F:XPTable.Editors.CellEditor.control">
<summary>
The Control that is performing the editing
</summary>
</member>
<member name="F:XPTable.Editors.CellEditor.cell">
<summary>
The Cell that is being edited
</summary>
</member>
<member name="F:XPTable.Editors.CellEditor.table">
<summary>
The Table that contains the Cell being edited
</summary>
</member>
<member name="F:XPTable.Editors.CellEditor.cellPos">
<summary>
A CellPos that represents the position of the Cell being edited
</summary>
</member>
<member name="F:XPTable.Editors.CellEditor.cellRect">
<summary>
The Rectangle that represents the Cells location and size
</summary>
</member>
<member name="F:XPTable.Editors.CellEditor.mouseMessageFilter">
<summary>
A MouseMessageFilter that receives mouse messages before they
are dispatched to their destination
</summary>
</member>
<member name="F:XPTable.Editors.CellEditor.keyMessageFilter">
<summary>
A KeyMessageFilter that receives key messages before they
are dispatched to their destination
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.#ctor">
<summary>
Initializes a new instance of the CellEditor class with default settings
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.PrepareForEditing(XPTable.Models.Cell,XPTable.Models.Table,XPTable.Models.CellPos,System.Drawing.Rectangle,System.Boolean)">
<summary>
Prepares the CellEditor to edit the specified Cell
</summary>
<param name="cell">The Cell to be edited</param>
<param name="table">The Table that contains the Cell</param>
<param name="cellPos">A CellPos representing the position of the Cell</param>
<param name="cellRect">The Rectangle that represents the Cells location and size</param>
<param name="userSetEditorValues">Specifies whether the ICellEditors
starting value has already been set by the user</param>
<returns>true if the ICellEditor can continue editing the Cell, false otherwise</returns>
</member>
<member name="M:XPTable.Editors.CellEditor.SetEditLocation(System.Drawing.Rectangle)">
<summary>
Sets the location and size of the CellEditor
</summary>
<param name="cellRect">A Rectangle that represents the size and location
of the Cell being edited</param>
</member>
<member name="M:XPTable.Editors.CellEditor.SetEditValue">
<summary>
Sets the initial value of the editor based on the contents of
the Cell being edited
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.SetCellValue">
<summary>
Sets the contents of the Cell being edited based on the value
in the editor
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.ShowEditControl">
<summary>
Displays the editor to the user and adds it to the Table's Control
collection
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.HideEditControl">
<summary>
Conceals the editor from the user, but does not remove it from the
Table's Control collection
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.RemoveEditControl">
<summary>
Conceals the editor from the user and removes it from the Table's
Control collection
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.StartEditing">
<summary>
Starts editing the Cell
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.StopEditing">
<summary>
Stops editing the Cell and commits any changes
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.CancelEditing">
<summary>
Stops editing the Cell and ignores any changes
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.ProcessMouseMessage(System.Windows.Forms.Control,XPTable.Win32.WindowMessage,System.Int64,System.Int64)">
<summary>
Filters out a mouse message before it is dispatched
</summary>
<param name="target">The Control that will receive the message</param>
<param name="msg">A WindowMessage that represents the message to process</param>
<param name="wParam">Specifies the WParam field of the message</param>
<param name="lParam">Specifies the LParam field of the message</param>
<returns>true to filter the message and prevent it from being dispatched;
false to allow the message to continue to the next filter or control</returns>
</member>
<member name="M:XPTable.Editors.CellEditor.ProcessKeyMessage(System.Windows.Forms.Control,XPTable.Win32.WindowMessage,System.Int64,System.Int64)">
<summary>
Filters out a key message before it is dispatched
</summary>
<param name="target">The Control that will receive the message</param>
<param name="msg">A WindowMessage that represents the message to process</param>
<param name="wParam">Specifies the WParam field of the message</param>
<param name="lParam">Specifies the LParam field of the message</param>
<returns>true to filter the message and prevent it from being dispatched;
false to allow the message to continue to the next filter or control</returns>
</member>
<member name="P:XPTable.Editors.CellEditor.Control">
<summary>
Gets or sets the Control that is being used to edit the Cell
</summary>
</member>
<member name="P:XPTable.Editors.CellEditor.EditingCell">
<summary>
Gets the Cell that is being edited
</summary>
</member>
<member name="P:XPTable.Editors.CellEditor.EditingTable">
<summary>
Gets the Table that contains the Cell being edited
</summary>
</member>
<member name="P:XPTable.Editors.CellEditor.EditingCellPos">
<summary>
Gets a CellPos that represents the position of the Cell being edited
</summary>
</member>
<member name="P:XPTable.Editors.CellEditor.IsEditing">
<summary>
Gets whether the CellEditor is currently editing a Cell
</summary>
</member>
<member name="M:XPTable.Editors.CellEditor.OnBeginEdit(XPTable.Events.CellEditEventArgs)">
<summary>
Raises the BeginEdit event
</summary>
<param name="e">A CellEditEventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.CellEditor.OnEndEdit(XPTable.Events.CellEditEventArgs)">
<summary>
Raises the EndEdit event
</summary>
<param name="e">A CellEditEventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.CellEditor.OnCancelEdit(XPTable.Events.CellEditEventArgs)">
<summary>
Raises the CancelEdit event
</summary>
<param name="e">A CellEditEventArgs that contains the event data</param>
</member>
<member name="T:XPTable.Editors.ColorCellEditor">
<summary>
A class for editing Cells that contain Colors
</summary>
</member>
<member name="E:XPTable.Editors.ColorCellEditor.SelectedColorChanged">
<summary>
Occurs when the SelectedIndex property has changed
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.colorpicker">
<summary>
A ColorPicker control similar to the ColorPicker found in the
VS.NET property window
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.colorDialog">
<summary>
Custom color dialog
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.#ctor">
<summary>
Initializes a new instance of the ColorCellEditor class with default settings
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.SetEditLocation(System.Drawing.Rectangle)">
<summary>
Sets the location and size of the CellEditor
</summary>
<param name="cellRect">A Rectangle that represents the size and location
of the Cell being edited</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.SetEditValue">
<summary>
Sets the initial value of the editor based on the contents of
the Cell being edited
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.SetCellValue">
<summary>
Sets the contents of the Cell being edited based on the value
in the editor
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.StartEditing">
<summary>
Starts editing the Cell
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.StopEditing">
<summary>
Stops editing the Cell and commits any changes
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.CancelEditing">
<summary>
Stops editing the Cell and ignores any changes
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorToString(System.Drawing.Color)">
<summary>
Converts the specified Color to its string representation
</summary>
<param name="color">The Color to convert</param>
<returns>A string that represents the specified Color</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ShouldStopEditing(System.Windows.Forms.Control,System.Drawing.Point)">
<summary>
Gets whether the editor should stop editing if a mouse click occurs
outside of the DropDownContainer while it is dropped down
</summary>
<param name="target">The Control that will receive the message</param>
<param name="cursorPos">The current position of the mouse cursor</param>
<returns>true if the editor should stop editing, false otherwise</returns>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.DropDownStyle">
<summary>
Gets or sets a value specifying the style of the drop down editor
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorDialog">
<summary>
Gets or sets the custom color dialog
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.OnSelectedColorChanged(System.EventArgs)">
<summary>
Raises the SelectedColorChanged event
</summary>
<param name="e">An EventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.OnKeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
<summary>
Handler for the editors TextBox.KeyPress event
</summary>
<param name="sender">The object that raised the event</param>
<param name="e">A KeyPressEventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.OnLostFocus(System.Object,System.EventArgs)">
<summary>
Handler for the editors TextBox.LostFocus event
</summary>
<param name="sender">The object that raised the event</param>
<param name="e">An EventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.colorpicker_SelectedColorChanged(System.Object,System.EventArgs)">
<summary>
Handler for the editors ColorPicker.SelectedColorChanged event
</summary>
<param name="sender">The object that raised the event</param>
<param name="e">An EventArgs that contains the event data</param>
</member>
<member name="T:XPTable.Editors.ColorCellEditor.ColorPicker">
<summary>
A ColorPicker control similar to the ColorPicker found in the
VS.NET property window
</summary>
</member>
<member name="E:XPTable.Editors.ColorCellEditor.ColorPicker.SelectedColorChanged">
<summary>
Occurs when the value of the ColorPicker's SelectedColor property changes
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.editor">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.tabControl">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.customTabPage">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.palette">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.webTabPage">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.webListBox">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.systemTabPage">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.systemListBox">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.webColors">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.systemColors">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.value">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.webHeightSet">
<summary>
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.systemHeightSet">
<summary>
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.#ctor(XPTable.Editors.ColorCellEditor)">
<summary>
Initializes a new instance of the ColorPicker class with default settings
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.GetWebColors">
<summary>
</summary>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.GetSystemColors">
<summary>
</summary>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.AdjustListBoxItemHeight">
<summary>
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.SelectedColor">
<summary>
Gets or sets the currently selected Color
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.WebColors">
<summary>
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.SystemColors">
<summary>
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.DefaultSize">
<summary>
Gets the default size of the control
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnSelectedColorChanged(System.EventArgs)">
<summary>
Raises the SelectedColorChanged event
</summary>
<param name="e">An EventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnFontChanged(System.EventArgs)">
<summary>
Raises the FontChanged event
</summary>
<param name="e">An EventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnGotFocus(System.EventArgs)">
<summary>
Raises the GotFocus event
</summary>
<param name="e">An EventArgs that contains the event data</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnListClick(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnListKeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="ke"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnListDrawItem(System.Object,System.Windows.Forms.DrawItemEventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="die"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnFontChanged(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnTabControlResize(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnTabControlSelChange(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.tabControl_GotFocus(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.OnPalettePick(System.Object,System.EventArgs)">
<summary>
</summary>
<param name="sender"></param>
<param name="e"></param>
</member>
<member name="T:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette">
<summary>
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.#ctor(XPTable.Editors.ColorCellEditor)">
<summary>
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.GetColorFromCell(System.Int32)">
<summary>
</summary>
<param name="index"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.GetColorFromCell(System.Int32,System.Int32)">
<summary>
</summary>
<param name="across"></param>
<param name="down"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.GetColorIndexFromCell(System.Int32,System.Int32)">
<summary>
</summary>
<param name="across"></param>
<param name="down"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.GetColorIndexFromCell(System.Drawing.Point)">
<summary>
</summary>
<param name="p"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.GetCellFromColor(System.Drawing.Color)">
<summary>
</summary>
<param name="c"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.GetCellFromMouse(System.Int32,System.Int32)">
<summary>
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.GetColorIndexFromMouse(System.Int32,System.Int32)">
<summary>
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.InvalidateSelection">
<summary>
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.InvalidateFocus">
<summary>
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.SetFocus(System.Drawing.Point)">
<summary>
</summary>
<param name="newFocus"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.IsInputKey(System.Windows.Forms.Keys)">
<summary>
</summary>
<param name="keyData"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ProcessDialogKey(System.Windows.Forms.Keys)">
<summary>
</summary>
<param name="keyData"></param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.LaunchDialog(System.Int32)">
<summary>
</summary>
<param name="customIndex"></param>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.Colors">
<summary>
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.SelectedColor">
<summary>
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.FocusedCell">
<summary>
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnGotFocus(System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnLostFocus(System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.OnPicked(System.EventArgs)">
<summary>
</summary>
<param name="e"></param>
</member>
<member name="T:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.frmColorPicker">
<summary>
Summary description for frmColorPicker.
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.frmColorPicker.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.frmColorPicker.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="T:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox">
<summary>
Summary description for ctrl2DColorBox.
</summary>
</member>
<member name="F:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.DrawStyle">
<summary>
The drawstyle of the contol (Hue, Saturation, Brightness, Red, Green or Blue)
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.HSL">
<summary>
The HSL color of the control, changing the HSL will automatically change the RGB color for the control.
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.RGB">
<summary>
The RGB color of the control, changing the RGB will automatically change the HSL color for the control.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.ClearMarker">
<summary>
Redraws only the content over the marker
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.DrawMarker(System.Int32,System.Int32,System.Boolean)">
<summary>
Draws the marker (circle) inside the box
</summary>
<param name="x"></param>
<param name="y"></param>
<param name="Unconditional"></param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.DrawBorder">
<summary>
Draws the border around the control.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.DrawContent">
<summary>
Evaluates the DrawStyle of the control and calls the appropriate
drawing function for content
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Draw_Style_Hue">
<summary>
Draws the content of the control filling in all color values with the provided Hue value.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Draw_Style_Saturation">
<summary>
Draws the content of the control filling in all color values with the provided Saturation value.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Draw_Style_Luminance">
<summary>
Draws the content of the control filling in all color values with the provided Luminance or Brightness value.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Draw_Style_Red">
<summary>
Draws the content of the control filling in all color values with the provided Red value.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Draw_Style_Green">
<summary>
Draws the content of the control filling in all color values with the provided Green value.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Draw_Style_Blue">
<summary>
Draws the content of the control filling in all color values with the provided Blue value.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Redraw_Control">
<summary>
Calls all the functions neccessary to redraw the entire control.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Reset_Marker(System.Boolean)">
<summary>
Resets the marker position of the slider to match the controls color. Gives the option of redrawing the slider.
</summary>
<param name="Redraw">Set to true if you want the function to redraw the slider after determining the best position</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.ResetHSLRGB">
<summary>
Resets the controls color (both HSL and RGB variables) based on the current marker position
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.Round(System.Double)">
<summary>
Kindof self explanitory, I really need to look up the .NET function that does this.
</summary>
<param name="val">double value to be rounded to an integer</param>
<returns></returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrl2DColorBox.GetColor(System.Int32,System.Int32)">
<summary>
Returns the graphed color at the x,y position on the control
</summary>
<param name="x"></param>
<param name="y"></param>
<returns></returns>
</member>
<member name="T:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider">
<summary>
A vertical slider control that shows a range for a color property (a.k.a. Hue, Saturation, Brightness,
Red, Green, Blue) and sends an event when the slider is changed.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.DrawStyle">
<summary>
The drawstyle of the contol (Hue, Saturation, Brightness, Red, Green or Blue)
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.HSL">
<summary>
The HSL color of the control, changing the HSL will automatically change the RGB color for the control.
</summary>
</member>
<member name="P:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.RGB">
<summary>
The RGB color of the control, changing the RGB will automatically change the HSL color for the control.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.ClearSlider">
<summary>
Redraws the background over the slider area on both sides of the control
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.DrawSlider(System.Int32,System.Boolean)">
<summary>
Draws the slider arrows on both sides of the control.
</summary>
<param name="position">position value of the slider, lowest being at the bottom. The range
is between 0 and the controls height-9. The values will be adjusted if too large/small</param>
<param name="Unconditional">If Unconditional is true, the slider is drawn, otherwise some logic
is performed to determine is drawing is really neccessary.</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.DrawBorder">
<summary>
Draws the border around the control, in this case the border around the content area between
the slider arrows.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.DrawContent">
<summary>
Evaluates the DrawStyle of the control and calls the appropriate
drawing function for content
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Draw_Style_Hue">
<summary>
Fills in the content of the control showing all values of Hue (from 0 to 360)
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Draw_Style_Saturation">
<summary>
Fills in the content of the control showing all values of Saturation (0 to 100%) for the given
Hue and Luminance.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Draw_Style_Luminance">
<summary>
Fills in the content of the control showing all values of Luminance (0 to 100%) for the given
Hue and Saturation.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Draw_Style_Red">
<summary>
Fills in the content of the control showing all values of Red (0 to 255) for the given
Green and Blue.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Draw_Style_Green">
<summary>
Fills in the content of the control showing all values of Green (0 to 255) for the given
Red and Blue.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Draw_Style_Blue">
<summary>
Fills in the content of the control showing all values of Blue (0 to 255) for the given
Red and Green.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Redraw_Control">
<summary>
Calls all the functions neccessary to redraw the entire control.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Reset_Slider(System.Boolean)">
<summary>
Resets the vertical position of the slider to match the controls color. Gives the option of redrawing the slider.
</summary>
<param name="Redraw">Set to true if you want the function to redraw the slider after determining the best position</param>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.ResetHSLRGB">
<summary>
Resets the controls color (both HSL and RGB variables) based on the current slider position
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.ctrlVerticalColorSlider.Round(System.Double)">
<summary>
Kindof self explanitory, I really need to look up the .NET function that does this.
</summary>
<param name="val">double value to be rounded to an integer</param>
<returns></returns>
</member>
<member name="T:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors">
<summary>
Summary description for AdobeColors.
</summary>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.SetBrightness(System.Drawing.Color,System.Double)">
<summary>
Sets the absolute brightness of a colour
</summary>
<param name="c">Original colour</param>
<param name="brightness">The luminance level to impose</param>
<returns>an adjusted colour</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.ModifyBrightness(System.Drawing.Color,System.Double)">
<summary>
Modifies an existing brightness level
</summary>
<remarks>
To reduce brightness use a number smaller than 1. To increase brightness use a number larger tnan 1
</remarks>
<param name="c">The original colour</param>
<param name="brightness">The luminance delta</param>
<returns>An adjusted colour</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.SetSaturation(System.Drawing.Color,System.Double)">
<summary>
Sets the absolute saturation level
</summary>
<remarks>Accepted values 0-1</remarks>
<param name="c">An original colour</param>
<param name="Saturation">The saturation value to impose</param>
<returns>An adjusted colour</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.ModifySaturation(System.Drawing.Color,System.Double)">
<summary>
Modifies an existing Saturation level
</summary>
<remarks>
To reduce Saturation use a number smaller than 1. To increase Saturation use a number larger tnan 1
</remarks>
<param name="c">The original colour</param>
<param name="Saturation">The saturation delta</param>
<returns>An adjusted colour</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.SetHue(System.Drawing.Color,System.Double)">
<summary>
Sets the absolute Hue level
</summary>
<remarks>Accepted values 0-1</remarks>
<param name="c">An original colour</param>
<param name="Hue">The Hue value to impose</param>
<returns>An adjusted colour</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.ModifyHue(System.Drawing.Color,System.Double)">
<summary>
Modifies an existing Hue level
</summary>
<remarks>
To reduce Hue use a number smaller than 1. To increase Hue use a number larger tnan 1
</remarks>
<param name="c">The original colour</param>
<param name="Hue">The Hue delta</param>
<returns>An adjusted colour</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.HSL_to_RGB(XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.HSL)">
<summary>
Converts a colour from HSL to RGB
</summary>
<remarks>Adapted from the algoritm in Foley and Van-Dam</remarks>
<param name="hsl">The HSL value</param>
<returns>A Color structure containing the equivalent RGB values</returns>
</member>
<member name="M:XPTable.Editors.ColorCellEditor.ColorPicker.ColorPalette.AdobeColors.RGB_to_HSL(System.Drawing.Color)">