-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathForm1.Designer.cs
11520 lines (11500 loc) · 763 KB
/
Form1.Designer.cs
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
#region Copyright Syncfusion Inc. 2001-2021.
// Copyright Syncfusion Inc. 2001-2021. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// licensing@syncfusion.com. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System.Drawing;
using Syncfusion.Windows.Forms.Tools;
using System.Windows.Forms;
namespace Word2007Demo_2005
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
Syncfusion.Windows.Forms.Tools.ToolStripTabGroup toolStripTabGroup1 = new Syncfusion.Windows.Forms.Tools.ToolStripTabGroup();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo39 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo40 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo41 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo42 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo43 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo56 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo44 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo45 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo46 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo47 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo48 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo49 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo50 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo51 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo52 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo53 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo54 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo55 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo57 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo58 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo59 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo60 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo61 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo62 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo63 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo64 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo65 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo66 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo67 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo68 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo69 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo70 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo71 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo72 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo73 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo74 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo75 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo76 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo77 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo78 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo79 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo80 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo81 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo82 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo83 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo84 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo85 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo86 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo87 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo88 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo89 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo90 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo91 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo92 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo93 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo94 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo95 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo96 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo104 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo97 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo98 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo99 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo100 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo101 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo102 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo103 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo105 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo106 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo107 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo112 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo108 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo109 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo110 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo111 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo113 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo114 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo115 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo116 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo117 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo118 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo119 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo120 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo121 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo122 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo127 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo123 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo124 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo125 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo126 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo128 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo129 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo130 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo131 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo132 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo133 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo134 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo135 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo136 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo137 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo138 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo139 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo140 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo141 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo142 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo143 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo144 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo145 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo146 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo147 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo148 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo149 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo150 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo151 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo152 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo153 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo154 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo155 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo156 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo157 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo158 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo159 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo160 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo161 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo162 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo163 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo164 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo165 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo166 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo167 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo168 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo169 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo170 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo171 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo172 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo173 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo174 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo175 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo176 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo177 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo178 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo179 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo180 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo181 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo182 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo183 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo184 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo185 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo186 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo187 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo188 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo189 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo190 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo191 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo192 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo193 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo194 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo195 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo196 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo197 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo198 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo199 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo200 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo5 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo6 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo7 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo8 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo9 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo10 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo16 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo11 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo12 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo13 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo14 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo15 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo20 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo17 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo18 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo19 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo28 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo21 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo22 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo23 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo24 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo25 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo26 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo27 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo31 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo29 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo30 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo35 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo32 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo33 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo34 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo36 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo37 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo38 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo201 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo202 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo203 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo204 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo205 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo206 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo207 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo208 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo3 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo4 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo1 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo2 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.Tools.ToolTipInfo toolTipInfo209 = new Syncfusion.Windows.Forms.Tools.ToolTipInfo();
Syncfusion.Windows.Forms.MetroColorTable metroColorTable1 = new Syncfusion.Windows.Forms.MetroColorTable();
Syncfusion.Windows.Forms.MetroColorTable metroColorTable2 = new Syncfusion.Windows.Forms.MetroColorTable();
Syncfusion.Windows.Forms.MetroColorTable metroColorTable3 = new Syncfusion.Windows.Forms.MetroColorTable();
Syncfusion.Windows.Forms.MetroColorTable metroColorTable4 = new Syncfusion.Windows.Forms.MetroColorTable();
Syncfusion.Windows.Forms.MetroColorTable metroColorTable5 = new Syncfusion.Windows.Forms.MetroColorTable();
Syncfusion.Windows.Forms.MetroColorTable metroColorTable6 = new Syncfusion.Windows.Forms.MetroColorTable();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.ribbonControlAdv1 = new Syncfusion.Windows.Forms.Tools.RibbonControlAdv();
this.homeTabItem = new Syncfusion.Windows.Forms.Tools.ToolStripTabItem();
this.clipboardToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripSplitButtonEx1 = new Syncfusion.Windows.Forms.Tools.ToolStripSplitButtonEx();
this.toolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem16 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem1 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.toolStripBtnCut = new System.Windows.Forms.ToolStripButton();
this.toolStripBtnCopy = new System.Windows.Forms.ToolStripButton();
this.toolStripBtnPaint = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem15 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.toolStripBtnPaste = new System.Windows.Forms.ToolStripButton();
this.toolStripDropDownBtnPaste = new System.Windows.Forms.ToolStripDropDownButton();
this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pasteSpecialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pasteAsHyperlinkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fontToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem2 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.toolStripFontfaceComboBox = new System.Windows.Forms.ToolStripComboBox();
this.toolStripFontSizeComboBox = new System.Windows.Forms.ToolStripComboBox();
this.toolStripPanelItem3 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.growfontToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.shrinkfontToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton23 = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem4 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.boldToolstripBtn = new System.Windows.Forms.ToolStripButton();
this.italicToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.underlineToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.moreUnderlinesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.underlineColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.automaticToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.moreColorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.strikethroToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.subscriptToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.superscriptToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripPanelItem47 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.changecaseToolStripBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripSeparator35 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripPanelItem6 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.txthighltToolStripsplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.noColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.stopHighlightingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fontcolorToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.automaticToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.themeColorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.moreColorsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.paragraphToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem7 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.bulletToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.changeListLevelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.defineNewBulletToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.numberingToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.changeListLevelToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.defineNewNumberFormatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.setNumberingValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.multilevelToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.changeListLevelToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.defineNewMultilevelListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.defineNewListStyleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator25 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripPanelItem8 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.deindentToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.inindentToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator34 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripPanelItem9 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.sortToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem16 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.lAlignToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.centerToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.rAlignToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.justifyToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator32 = new System.Windows.Forms.ToolStripSeparator();
this.lspacingToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
this.moreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.addSpaceBeforeParagraphToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeSpaceAfterParagraphToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator33 = new System.Windows.Forms.ToolStripSeparator();
this.shadingToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.noColorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
this.moreShadingColorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btmborderToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.bottomBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.topBoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.leftBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rightBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.noBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.allBordersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.outsideBordersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.insideBordersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.insideHorizontalBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.insideVerticalBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.diagonalDownBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.diagonalUpBorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.horizontalLineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.showGridlinesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.bordersAndShadingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.stylesToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.qckstylesToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.blueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.silverToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.blackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editingToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem10 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.findToolStripBtn = new System.Windows.Forms.ToolStripSplitButton();
this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.goToToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.replaceToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.selectToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectObjectsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectTextWithSimilarFormattingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.insertTabItem = new Syncfusion.Windows.Forms.Tools.ToolStripTabItem();
this.pagesToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.coverPageToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.formatPageNumbersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeCurrentCoverPageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToCoverPageGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.blankPageToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.pageBreakToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.tablesToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.tableToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.insertTableToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.drawTableToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.convertTextToTableToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.excelSpreadsheetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.quickTablesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToQuickTablToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.linksToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.hyperlinkToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.bookmarkToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.crossrefToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.headerToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.headerToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.editHeaderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeHeaderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToHeaderGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.footerToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.editFooterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeFooterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToFooterGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pagenoToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.topOfPageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.headerFooterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionAsPageNumberTopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.bottomOfPageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.headerFooterToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionAsPageNumberBottomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pageMarginsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sAveSelectionAsPageMarginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.formatPageNumbersToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.removePageNumbersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.textToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.txtboxToolStripSplitBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.drawTextBoxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToTextBoxGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem11 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.qckPartsToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.propertyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.abstractToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.authorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.categoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.commentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.companyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.companyAddressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.companyEmailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.companyFaxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.companyPhoneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.keywordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.managerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.publishDateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.subjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.titleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fieldToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pageNumbersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToPageNumberGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
this.buildingBlocksOrganizerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.getMoreOnOfficeOnlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToQuickPartGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.wordArtToolStripSplitBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.dropCapToolStripSplitBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.advancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem12 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.signLineToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.microsoftOfficeSignatureLineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
this.addSignatureServicesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dateTimeToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.objectToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.textFromFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.objectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.symbolsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.equationToolStripDropDwnBtn = new System.Windows.Forms.ToolStripSplitButton();
this.insertNewEquationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToEquationGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.symbolToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.moreSymbolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pageLayoutTabItem = new Syncfusion.Windows.Forms.Tools.ToolStripTabItem();
this.themesToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.themesToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.resetToThemeFromTemplateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.searchOfficeOnlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.browseForThemesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveCurrentThemeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem13 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.themeColorToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.createNewThemeColorsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.themeFontToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.createNewThemeFontsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.themeEffectsToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.pageSetupToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.marginToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.customMarginsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem44 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.orientationToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.sizeToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.morePaperSizesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.columnsToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.moreColumnsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem14 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.breaksToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.lnumbersToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.noneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.continuousToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.restartEachPageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.restartEachSectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.suppressForCurrentSectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
this.moreLineNumberingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.hyphenationToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.noneToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.automaticToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.manualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
this.hyphenationOptionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pageBackgroundToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.watermarkToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.moreWatermarksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeWatermartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToWatermarkGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pageColorToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.noColorToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
this.moreColorsToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.fillEffectsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pageBordersToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.paraToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem17 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.indentToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.toolStripPanelItem19 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.lindentToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.ToolStriplindentComboBox = new System.Windows.Forms.ToolStripComboBox();
this.toolStripPanelItem20 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.rindentToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.ToolStriprindentComboBox = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripPanelItem18 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.spacingToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.toolStripPanelItem21 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.sbeforeToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.ToolStripsbeforeComboBox = new System.Windows.Forms.ToolStripComboBox();
this.toolStripPanelItem22 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.safterToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.ToolStripsafterComboBox = new System.Windows.Forms.ToolStripComboBox();
this.arrangeToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.positionToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripPanelItem23 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.bringToFrontToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.sendToBackToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.txtwrapToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.toolStripPanelItem24 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.alignToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.alignLeftToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.alignCenterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.alignRightToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
this.alignTopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.alignMiddleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.alignBottomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator17 = new System.Windows.Forms.ToolStripSeparator();
this.distributreHorizontallyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.distributeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
this.alignToPageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.alToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.alignSelectedObjectsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
this.showGridlinesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.gridSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.groupToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.rotateToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.referencesTabItem = new Syncfusion.Windows.Forms.Tools.ToolStripTabItem();
this.tbofContentsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem25 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.tablefcontToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.insertTableOfContentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeTableOfContentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem();
this.addtxtToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.doNotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.level1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.level2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.level3ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.updateTableToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.footNotesToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.inftnoteToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem26 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.inendnoteToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.nxtftnoteToolStripSplitBtn = new System.Windows.Forms.ToolStripSplitButton();
this.nextFootnoteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.previousFootnoteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.nextEndnoteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.prevToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.shNotesToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.citationsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.inCaptionToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.addNewSourceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.addNewPlaceholderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.searchLibrariesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem27 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.mgeSourcesToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem28 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.styleToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.ToolStripStyleComboBox = new System.Windows.Forms.ToolStripComboBox();
this.bibliographyToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.insertBibliographyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSelectionToBibliographyGalleryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveAsNewBibliographyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.captionsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.inCaptionToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem29 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.inTbofFiguresToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.upTableToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.crrefToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.indexToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem30 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.markEntryToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.inIndexToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.uIndexToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.tbofAuthoritiesToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem31 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.markCitationToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.inTbofAuthoritiesToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.uTableToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.mailingsTabItem = new Syncfusion.Windows.Forms.Tools.ToolStripTabItem();
this.createToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.envelopeToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.labelsToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.stMailMergeToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.stMailMergeToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.lettersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.emailMessagesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.envelopesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.lablesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.directoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator20 = new System.Windows.Forms.ToolStripSeparator();
this.normalWordDocumentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator21 = new System.Windows.Forms.ToolStripSeparator();
this.stepByStepMailMergeWizardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sltRecipientsToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.typeNewListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.useExistingListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectFromOutlookContactsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editRecepientsToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.insertFieldsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.highltMergeToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.addBlockToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.greetingToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.inMergeFieldToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripPanelItem32 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.rulesToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.matchFieldsToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.upLablesToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.previewResultsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.previewResultsToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripPanelItem33 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.toolStripPanelItem34 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.firstToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.previousToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.recordToolStripTextBox = new System.Windows.Forms.ToolStripTextBox();
this.nxtToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.lstToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.fndRecepientToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.checkErrorToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.finishToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.finshMergeToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.reviewTabItem = new Syncfusion.Windows.Forms.Tools.ToolStripTabItem();
this.proofingToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.spellToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem35 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.researchToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.thesaurusToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.translateToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem36 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.translateTooltipToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.englishUSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
this.spanishInternationalSortToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.turnOffTranslationToolTipToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.turnOffTranslationTooltipToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.setLangToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.wordCntToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.commentsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.nwCommentToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem37 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.delToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteAllCommentsShownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteAllCommentsInDocumentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.preToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.nxttToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.trackingToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.trkChangesToolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
this.trackChangesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.changeTrackingOptionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.changeUserNameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.balloonsToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.showRevisionsInballoonsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showAllRevisionsInlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showOnlycommentsAndFormattingInBallonsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem38 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.toolStripReviewComboBox = new System.Windows.Forms.ToolStripComboBox();
this.shMarkUpToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.commentsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.inkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.insertionsAndDeletionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.formattingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.markupAreaHighlightToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.revieToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.allReviewersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.reviewPaneToolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
this.reviewingPaneVerticalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.reviewingPaneHorizontalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.changesToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.acceptToolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
this.acceptAndMoveToNextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.acceptChangeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.acceptAllChangesShownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.acceptAllChangesInDocumentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripPanelItem39 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.rejectToolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
this.rEjectAndMoveToNextToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rejectChangeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rejectAllChangesShownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rejectAllChangesInDocumentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.prevToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.nextToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.compareToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.compareToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.shSrcDocToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.hideSourceDocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showOriginalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showRevisedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showBothToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripEx6 = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.protectDocToolStripDropDownBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.restrictFormattingAndEditingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.unrestrictedAccessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.restrictedAccessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator26 = new System.Windows.Forms.ToolStripSeparator();
this.manageCredentionalsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewTabItem = new Syncfusion.Windows.Forms.Tools.ToolStripTabItem();
this.docViewsToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.printLayoutToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.fullScrToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem46 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.webLayoutToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.outlineToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.draftToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.showToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem40 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.rulerCheckBox = new Syncfusion.Windows.Forms.Tools.ToolStripCheckBox();
this.gridLineCheckBox = new Syncfusion.Windows.Forms.Tools.ToolStripCheckBox();
this.msgBarCheckBox = new Syncfusion.Windows.Forms.Tools.ToolStripCheckBox();
this.toolStripPanelItem41 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.docMapCheckBox = new Syncfusion.Windows.Forms.Tools.ToolStripCheckBox();
this.thumbnailsCheckBox2 = new Syncfusion.Windows.Forms.Tools.ToolStripCheckBox();
this.zoomToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.zoomToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripPanelItem42 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.onePgToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.twoPgsToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.pgWidthToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.windowToolStripExt = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.toolStripPanelItem45 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.nwWindowToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.arrangeAllToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.splitToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator23 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripPanelItem43 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.viewToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.syncScrollToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.resetWindowPosToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator24 = new System.Windows.Forms.ToolStripSeparator();
this.switchWindowsToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.macrosToolStripEx = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
this.macrosToolStripDropDwnBtn = new System.Windows.Forms.ToolStripDropDownButton();
this.viewMacrosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.reToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pauseMacroToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton9 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator27 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton18 = new System.Windows.Forms.ToolStripButton();
this.officeSplitButton1 = new Syncfusion.Windows.Forms.Tools.OfficeSplitButton();
this.officeButton1 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton2 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton3 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton4 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton5 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.toolStripSeparator28 = new System.Windows.Forms.ToolStripSeparator();
this.officeSplitButton2 = new Syncfusion.Windows.Forms.Tools.OfficeSplitButton();
this.officeButton6 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton7 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton8 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeDropDownButton1 = new Syncfusion.Windows.Forms.Tools.OfficeDropDownButton();
this.officeButton9 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton10 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton11 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton12 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton13 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton14 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton15 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeDropDownButton3 = new Syncfusion.Windows.Forms.Tools.OfficeDropDownButton();
this.officeButton16 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton17 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeDropDownButton4 = new Syncfusion.Windows.Forms.Tools.OfficeDropDownButton();
this.officeButton18 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton19 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.officeButton20 = new Syncfusion.Windows.Forms.Tools.OfficeButton();
this.toolStripSeparator29 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
this.superAccelerator = new Syncfusion.Windows.Forms.Tools.SuperAccelerator(this);
this.saveToolstripBtn = new System.Windows.Forms.ToolStripButton();
this.undoToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.redoToolStripBtn = new System.Windows.Forms.ToolStripButton();
this.backStageView1 = new Syncfusion.Windows.Forms.BackStageView(this.components);
this.backStage1 = new Syncfusion.Windows.Forms.BackStage();
this.backStageTab1 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab2 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab3 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab4 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab5 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab6 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab7 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab8 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab9 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab10 = new Syncfusion.Windows.Forms.BackStageTab();
this.backStageTab11 = new Syncfusion.Windows.Forms.BackStageTab();
this.superToolTip1 = new Syncfusion.Windows.Forms.Tools.SuperToolTip(this);
this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton19 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton20 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton21 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton22 = new System.Windows.Forms.ToolStripButton();
this.statusStripButton4 = new Syncfusion.Windows.Forms.Tools.StatusStripButton();
this.statusStripButton5 = new Syncfusion.Windows.Forms.Tools.StatusStripButton();
this.statusStripButton1 = new Syncfusion.Windows.Forms.Tools.StatusStripButton();
this.statusStripButton2 = new Syncfusion.Windows.Forms.Tools.StatusStripButton();
this.clearToolstripBtn = new System.Windows.Forms.ToolStripButton();
this.fontListBox1 = new Syncfusion.Windows.Forms.Tools.FontListBox();
this.EditorContextMenuStripEx = new Syncfusion.Windows.Forms.Tools.ContextMenuStripEx();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator30 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator31 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem();
this.gridLayout1 = new Syncfusion.Windows.Forms.Tools.GridLayout(this.components);
this.progressTimer = new System.Windows.Forms.Timer(this.components);
this.statusStripEx1 = new Syncfusion.Windows.Forms.Tools.StatusStripEx();
this.statusStripLabel1 = new Syncfusion.Windows.Forms.Tools.StatusStripLabel();
this.trackBarItem1 = new Syncfusion.Windows.Forms.Tools.TrackBarItem();
this.MiniToolBarPanelItem = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.PanelItem1 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.PanelItem2 = new Syncfusion.Windows.Forms.Tools.ToolStripPanelItem();
this.FontFaceCombo = new System.Windows.Forms.ToolStripComboBox();
this.comboBox1 = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
this.comboBox2 = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
this.FontSize = new System.Windows.Forms.ToolStripComboBox();
this.toolStripButton10 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripButton11 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripButton12 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripButton13 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripButton14 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripButton17 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripSplitButton1 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripSplitButton2 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripButton15 = new Syncfusion.Windows.Forms.ButtonAdv();
this.toolStripButton16 = new Syncfusion.Windows.Forms.ButtonAdv();
this.scrollersFrame1 = new Syncfusion.Windows.Forms.ScrollersFrame(this.components);
this.splashControl1 = new Syncfusion.Windows.Forms.Tools.SplashControl();
this.splashPanel1 = new Syncfusion.Windows.Forms.Tools.SplashPanel();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.radialMenu1 = new Syncfusion.Windows.Forms.Tools.RadialMenu();
this.radialMenuItem6 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem7 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem8 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem9 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem14 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem15 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem10 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem11 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem16 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem17 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem12 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem18 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem19 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem20 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem13 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem21 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem22 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem23 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem24 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem25 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem26 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem27 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem28 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem29 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem30 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem31 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem32 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem33 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem34 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem35 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem1 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem36 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem37 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem38 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem39 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem40 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem41 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem42 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem43 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem44 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem45 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem46 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem47 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuSlider1 = new Syncfusion.Windows.Forms.Tools.RadialMenuSlider();
this.radialColorPalette1 = new Syncfusion.Windows.Forms.Tools.RadialColorPalette();
this.radialFontListBox1 = new Syncfusion.Windows.Forms.Tools.RadialFontListBox();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.radialMenuItem2 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem3 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem4 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
this.radialMenuItem5 = new Syncfusion.Windows.Forms.Tools.RadialMenuItem();
((System.ComponentModel.ISupportInitialize)(this.ribbonControlAdv1)).BeginInit();
this.ribbonControlAdv1.SuspendLayout();
this.homeTabItem.Panel.SuspendLayout();
this.clipboardToolStripExt.SuspendLayout();
this.fontToolStripExt.SuspendLayout();
this.paragraphToolStripExt.SuspendLayout();
this.stylesToolStripExt.SuspendLayout();
this.editingToolStripExt.SuspendLayout();
this.insertTabItem.Panel.SuspendLayout();
this.pagesToolStripExt.SuspendLayout();
this.tablesToolStripExt.SuspendLayout();
this.linksToolStripExt.SuspendLayout();
this.headerToolStripExt.SuspendLayout();
this.textToolStripExt.SuspendLayout();
this.symbolsToolStripExt.SuspendLayout();
this.pageLayoutTabItem.Panel.SuspendLayout();
this.themesToolStripExt.SuspendLayout();
this.pageSetupToolStripExt.SuspendLayout();
this.pageBackgroundToolStripExt.SuspendLayout();
this.paraToolStripExt.SuspendLayout();
this.arrangeToolStripExt.SuspendLayout();
this.referencesTabItem.Panel.SuspendLayout();
this.tbofContentsToolStripExt.SuspendLayout();
this.footNotesToolStripExt.SuspendLayout();
this.citationsToolStripExt.SuspendLayout();
this.captionsToolStripExt.SuspendLayout();
this.indexToolStripExt.SuspendLayout();
this.tbofAuthoritiesToolStripExt.SuspendLayout();
this.mailingsTabItem.Panel.SuspendLayout();
this.createToolStripExt.SuspendLayout();
this.stMailMergeToolStripExt.SuspendLayout();
this.insertFieldsToolStripExt.SuspendLayout();
this.previewResultsToolStripExt.SuspendLayout();
this.finishToolStripExt.SuspendLayout();
this.reviewTabItem.Panel.SuspendLayout();
this.proofingToolStripExt.SuspendLayout();
this.commentsToolStripExt.SuspendLayout();
this.trackingToolStripExt.SuspendLayout();
this.changesToolStripExt.SuspendLayout();
this.compareToolStripExt.SuspendLayout();
this.toolStripEx6.SuspendLayout();
this.viewTabItem.Panel.SuspendLayout();
this.docViewsToolStripExt.SuspendLayout();
this.showToolStripExt.SuspendLayout();
this.zoomToolStripExt.SuspendLayout();
this.windowToolStripExt.SuspendLayout();
this.macrosToolStripEx.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.backStage1)).BeginInit();
this.backStage1.SuspendLayout();
this.EditorContextMenuStripEx.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridLayout1)).BeginInit();
this.statusStripEx1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.comboBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.comboBox2)).BeginInit();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.radialMenu1.SuspendLayout();
this.SuspendLayout();
//
// ribbonControlAdv1
//
this.ribbonControlAdv1.AutoLayoutToolStrip = true;
this.ribbonControlAdv1.CaptionFont = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ribbonControlAdv1.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.ribbonControlAdv1.Header.AddMainItem(homeTabItem);
this.ribbonControlAdv1.Header.AddMainItem(insertTabItem);
this.ribbonControlAdv1.Header.AddMainItem(pageLayoutTabItem);
this.ribbonControlAdv1.Header.AddMainItem(referencesTabItem);
this.ribbonControlAdv1.Header.AddMainItem(mailingsTabItem);
this.ribbonControlAdv1.Header.AddMainItem(reviewTabItem);
this.ribbonControlAdv1.Header.AddMainItem(viewTabItem);