npoi

Форк
0
1013 строк · 24.3 Кб
1
// ------------------------------------------------------------------------------
2
//  <auto-generated>
3
//    Generated by Xsd2Code. Version 3.4.0.38967
4
//    <NameSpace>NPOI.OpenXmlFormats.Dml</NameSpace><Collection>List</Collection><codeType>CSharp</codeType><EnableDataBinding>False</EnableDataBinding><EnableLazyLoading>False</EnableLazyLoading><TrackingChangesEnable>False</TrackingChangesEnable><GenTrackingClasses>False</GenTrackingClasses><HidePrivateFieldInIDE>False</HidePrivateFieldInIDE><EnableSummaryComment>False</EnableSummaryComment><VirtualProp>False</VirtualProp><IncludeSerializeMethod>False</IncludeSerializeMethod><UseBaseClass>False</UseBaseClass><GenBaseClass>False</GenBaseClass><GenerateCloneMethod>False</GenerateCloneMethod><GenerateDataContracts>False</GenerateDataContracts><CodeBaseTag>Net20</CodeBaseTag><SerializeMethodName>Serialize</SerializeMethodName><DeserializeMethodName>Deserialize</DeserializeMethodName><SaveToFileMethodName>SaveToFile</SaveToFileMethodName><LoadFromFileMethodName>LoadFromFile</LoadFromFileMethodName><GenerateXMLAttributes>True</GenerateXMLAttributes><EnableEncoding>False</EnableEncoding><AutomaticProperties>False</AutomaticProperties><GenerateShouldSerialize>False</GenerateShouldSerialize><DisableDebug>True</DisableDebug><PropNameSpecified>Default</PropNameSpecified><Encoder>UTF8</Encoder><CustomUsings></CustomUsings><ExcludeIncludedTypes>True</ExcludeIncludedTypes><EnableInitializeFields>True</EnableInitializeFields>
5
//  </auto-generated>
6
// ------------------------------------------------------------------------------
7
namespace NPOI.OpenXmlFormats.Dml
8
{
9
    using System;
10
    using System.Diagnostics;
11
    using System.Xml.Serialization;
12
    using System.Collections;
13
    using System.Xml.Schema;
14
    using System.ComponentModel;
15
    using System.Collections.Generic;
16

17

18
    [Serializable]
19
    [DebuggerStepThrough]
20
    [System.ComponentModel.DesignerCategoryAttribute("code")]
21
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")]
22
    [XmlRoot("tbl", Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", IsNullable = false)]
23
    public class CT_Table
24
    {
25

26
        private CT_TableProperties tblPrField;
27

28
        private List<CT_TableCol> tblGridField;
29

30
        private List<CT_TableRow> trField;
31

32
        public CT_Table()
33
        {
34
            this.trField = new List<CT_TableRow>();
35
            this.tblGridField = new List<CT_TableCol>();
36
            this.tblPrField = new CT_TableProperties();
37
        }
38

39
        [XmlElement(Order = 0)]
40
        public CT_TableProperties tblPr
41
        {
42
            get
43
            {
44
                return this.tblPrField;
45
            }
46
            set
47
            {
48
                this.tblPrField = value;
49
            }
50
        }
51

52
        [XmlArray(Order = 1)]
53
        [XmlArrayItem("gridCol", IsNullable = false)]
54
        public List<CT_TableCol> tblGrid
55
        {
56
            get
57
            {
58
                return this.tblGridField;
59
            }
60
            set
61
            {
62
                this.tblGridField = value;
63
            }
64
        }
65

66
        [XmlElement("tr", Order = 2)]
67
        public List<CT_TableRow> tr
68
        {
69
            get
70
            {
71
                return this.trField;
72
            }
73
            set
74
            {
75
                this.trField = value;
76
            }
77
        }
78
    }
79

80

81
    [Serializable]
82
    [DebuggerStepThrough]
83
    [System.ComponentModel.DesignerCategoryAttribute("code")]
84
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")]
85
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", IsNullable = true)]
86
    public class CT_TableProperties
87
    {
88

89
        private CT_NoFillProperties noFillField;
90

91
        private CT_SolidColorFillProperties solidFillField;
92

93
        private CT_GradientFillProperties gradFillField;
94

95
        private CT_BlipFillProperties blipFillField;
96

97
        private CT_PatternFillProperties pattFillField;
98

99
        private CT_GroupFillProperties grpFillField;
100

101
        private CT_EffectList effectLstField;
102

103
        private CT_EffectContainer effectDagField;
104

105
        private object itemField;
106

107
        private CT_OfficeArtExtensionList extLstField;
108

109
        private bool rtlField;
110

111
        private bool firstRowField;
112

113
        private bool firstColField;
114

115
        private bool lastRowField;
116

117
        private bool lastColField;
118

119
        private bool bandRowField;
120

121
        private bool bandColField;
122

123
        public CT_TableProperties()
124
        {
125
            //this.extLstField = new CT_OfficeArtExtensionList();
126
            //this.effectDagField = new CT_EffectContainer();
127
            //this.effectLstField = new CT_EffectList();
128
            //this.grpFillField = new CT_GroupFillProperties();
129
            //this.pattFillField = new CT_PatternFillProperties();
130
            //this.blipFillField = new CT_BlipFillProperties();
131
            //this.gradFillField = new CT_GradientFillProperties();
132
            //this.solidFillField = new CT_SolidColorFillProperties();
133
            //this.noFillField = new CT_NoFillProperties();
134
            //this.rtlField = false;
135
            //this.firstRowField = false;
136
            //this.firstColField = false;
137
            //this.lastRowField = false;
138
            //this.lastColField = false;
139
            //this.bandRowField = false;
140
            //this.bandColField = false;
141
        }
142

143
        [XmlElement(Order = 0)]
144
        public CT_NoFillProperties noFill
145
        {
146
            get
147
            {
148
                return this.noFillField;
149
            }
150
            set
151
            {
152
                this.noFillField = value;
153
            }
154
        }
155

156
        [XmlElement(Order = 1)]
157
        public CT_SolidColorFillProperties solidFill
158
        {
159
            get
160
            {
161
                return this.solidFillField;
162
            }
163
            set
164
            {
165
                this.solidFillField = value;
166
            }
167
        }
168

169
        [XmlElement(Order = 2)]
170
        public CT_GradientFillProperties gradFill
171
        {
172
            get
173
            {
174
                return this.gradFillField;
175
            }
176
            set
177
            {
178
                this.gradFillField = value;
179
            }
180
        }
181

182
        [XmlElement(Order = 3)]
183
        public CT_BlipFillProperties blipFill
184
        {
185
            get
186
            {
187
                return this.blipFillField;
188
            }
189
            set
190
            {
191
                this.blipFillField = value;
192
            }
193
        }
194

195
        [XmlElement(Order = 4)]
196
        public CT_PatternFillProperties pattFill
197
        {
198
            get
199
            {
200
                return this.pattFillField;
201
            }
202
            set
203
            {
204
                this.pattFillField = value;
205
            }
206
        }
207

208
        [XmlElement(Order = 5)]
209
        public CT_GroupFillProperties grpFill
210
        {
211
            get
212
            {
213
                return this.grpFillField;
214
            }
215
            set
216
            {
217
                this.grpFillField = value;
218
            }
219
        }
220

221
        [XmlElement(Order = 6)]
222
        public CT_EffectList effectLst
223
        {
224
            get
225
            {
226
                return this.effectLstField;
227
            }
228
            set
229
            {
230
                this.effectLstField = value;
231
            }
232
        }
233

234
        [XmlElement(Order = 7)]
235
        public CT_EffectContainer effectDag
236
        {
237
            get
238
            {
239
                return this.effectDagField;
240
            }
241
            set
242
            {
243
                this.effectDagField = value;
244
            }
245
        }
246

247
        [XmlElement("tableStyle", typeof(CT_TableStyle), Order = 8)]
248
        [XmlElement("tableStyleId", typeof(string), DataType = "token", Order = 8)]
249
        public object Item
250
        {
251
            get
252
            {
253
                return this.itemField;
254
            }
255
            set
256
            {
257
                this.itemField = value;
258
            }
259
        }
260

261
        [XmlElement(Order = 9)]
262
        public CT_OfficeArtExtensionList extLst
263
        {
264
            get
265
            {
266
                return this.extLstField;
267
            }
268
            set
269
            {
270
                this.extLstField = value;
271
            }
272
        }
273

274
        [XmlAttribute]
275
        [DefaultValue(false)]
276
        public bool rtl
277
        {
278
            get
279
            {
280
                return this.rtlField;
281
            }
282
            set
283
            {
284
                this.rtlField = value;
285
            }
286
        }
287

288
        [XmlAttribute]
289
        [DefaultValue(false)]
290
        public bool firstRow
291
        {
292
            get
293
            {
294
                return this.firstRowField;
295
            }
296
            set
297
            {
298
                this.firstRowField = value;
299
            }
300
        }
301

302
        [XmlAttribute]
303
        [DefaultValue(false)]
304
        public bool firstCol
305
        {
306
            get
307
            {
308
                return this.firstColField;
309
            }
310
            set
311
            {
312
                this.firstColField = value;
313
            }
314
        }
315

316
        [XmlAttribute]
317
        [DefaultValue(false)]
318
        public bool lastRow
319
        {
320
            get
321
            {
322
                return this.lastRowField;
323
            }
324
            set
325
            {
326
                this.lastRowField = value;
327
            }
328
        }
329

330
        [XmlAttribute]
331
        [DefaultValue(false)]
332
        public bool lastCol
333
        {
334
            get
335
            {
336
                return this.lastColField;
337
            }
338
            set
339
            {
340
                this.lastColField = value;
341
            }
342
        }
343

344
        [XmlAttribute]
345
        [DefaultValue(false)]
346
        public bool bandRow
347
        {
348
            get
349
            {
350
                return this.bandRowField;
351
            }
352
            set
353
            {
354
                this.bandRowField = value;
355
            }
356
        }
357

358
        [XmlAttribute]
359
        [DefaultValue(false)]
360
        public bool bandCol
361
        {
362
            get
363
            {
364
                return this.bandColField;
365
            }
366
            set
367
            {
368
                this.bandColField = value;
369
            }
370
        }
371
    }
372

373

374
    [Serializable]
375
    [DebuggerStepThrough]
376
    [System.ComponentModel.DesignerCategoryAttribute("code")]
377
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")]
378
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", IsNullable = true)]
379
    public class CT_TableCol
380
    {
381

382
        private CT_OfficeArtExtensionList extLstField;
383

384
        private long wField;
385

386
        public CT_TableCol()
387
        {
388
            this.extLstField = new CT_OfficeArtExtensionList();
389
        }
390

391
        [XmlElement(Order = 0)]
392
        public CT_OfficeArtExtensionList extLst
393
        {
394
            get
395
            {
396
                return this.extLstField;
397
            }
398
            set
399
            {
400
                this.extLstField = value;
401
            }
402
        }
403

404
        [XmlAttribute]
405
        public long w
406
        {
407
            get
408
            {
409
                return this.wField;
410
            }
411
            set
412
            {
413
                this.wField = value;
414
            }
415
        }
416
    }
417

418

419
    [Serializable]
420
    [DebuggerStepThrough]
421
    [System.ComponentModel.DesignerCategoryAttribute("code")]
422
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")]
423
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", IsNullable = true)]
424
    public class CT_TableRow
425
    {
426

427
        private List<CT_TableCell> tcField;
428

429
        private CT_OfficeArtExtensionList extLstField;
430

431
        private long hField;
432

433
        public CT_TableRow()
434
        {
435
            this.extLstField = new CT_OfficeArtExtensionList();
436
            this.tcField = new List<CT_TableCell>();
437
        }
438

439
        [XmlElement("tc", Order = 0)]
440
        public List<CT_TableCell> tc
441
        {
442
            get
443
            {
444
                return this.tcField;
445
            }
446
            set
447
            {
448
                this.tcField = value;
449
            }
450
        }
451

452
        [XmlElement(Order = 1)]
453
        public CT_OfficeArtExtensionList extLst
454
        {
455
            get
456
            {
457
                return this.extLstField;
458
            }
459
            set
460
            {
461
                this.extLstField = value;
462
            }
463
        }
464

465
        [XmlAttribute]
466
        public long h
467
        {
468
            get
469
            {
470
                return this.hField;
471
            }
472
            set
473
            {
474
                this.hField = value;
475
            }
476
        }
477
    }
478

479

480
    [Serializable]
481
    [DebuggerStepThrough]
482
    [System.ComponentModel.DesignerCategoryAttribute("code")]
483
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")]
484
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", IsNullable = true)]
485
    public class CT_TableCell
486
    {
487

488
        private CT_TextBody txBodyField;
489

490
        private CT_TableCellProperties tcPrField;
491

492
        private CT_OfficeArtExtensionList extLstField;
493

494
        private int rowSpanField;
495

496
        private int gridSpanField;
497

498
        private bool hMergeField;
499

500
        private bool vMergeField;
501

502
        public CT_TableCell()
503
        {
504
            //this.extLstField = new CT_OfficeArtExtensionList();
505
            //this.tcPrField = new CT_TableCellProperties();
506
            //this.txBodyField = new CT_TextBody();
507
            this.rowSpanField = 1;
508
            this.gridSpanField = 1;
509
            this.hMergeField = false;
510
            this.vMergeField = false;
511
        }
512

513
        [XmlElement(Order = 0)]
514
        public CT_TextBody txBody
515
        {
516
            get
517
            {
518
                return this.txBodyField;
519
            }
520
            set
521
            {
522
                this.txBodyField = value;
523
            }
524
        }
525

526
        [XmlElement(Order = 1)]
527
        public CT_TableCellProperties tcPr
528
        {
529
            get
530
            {
531
                return this.tcPrField;
532
            }
533
            set
534
            {
535
                this.tcPrField = value;
536
            }
537
        }
538

539
        [XmlElement(Order = 2)]
540
        public CT_OfficeArtExtensionList extLst
541
        {
542
            get
543
            {
544
                return this.extLstField;
545
            }
546
            set
547
            {
548
                this.extLstField = value;
549
            }
550
        }
551

552
        [XmlAttribute]
553
        [DefaultValue(1)]
554
        public int rowSpan
555
        {
556
            get
557
            {
558
                return this.rowSpanField;
559
            }
560
            set
561
            {
562
                this.rowSpanField = value;
563
            }
564
        }
565

566
        [XmlAttribute]
567
        [DefaultValue(1)]
568
        public int gridSpan
569
        {
570
            get
571
            {
572
                return this.gridSpanField;
573
            }
574
            set
575
            {
576
                this.gridSpanField = value;
577
            }
578
        }
579

580
        [XmlAttribute]
581
        [DefaultValue(false)]
582
        public bool hMerge
583
        {
584
            get
585
            {
586
                return this.hMergeField;
587
            }
588
            set
589
            {
590
                this.hMergeField = value;
591
            }
592
        }
593

594
        [XmlAttribute]
595
        [DefaultValue(false)]
596
        public bool vMerge
597
        {
598
            get
599
            {
600
                return this.vMergeField;
601
            }
602
            set
603
            {
604
                this.vMergeField = value;
605
            }
606
        }
607
    }
608

609

610

611
    [Serializable]
612
    [DebuggerStepThrough]
613
    [System.ComponentModel.DesignerCategoryAttribute("code")]
614
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")]
615
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", IsNullable = true)]
616
    public class CT_TableCellProperties
617
    {
618

619
        private CT_LineProperties lnLField;
620

621
        private CT_LineProperties lnRField;
622

623
        private CT_LineProperties lnTField;
624

625
        private CT_LineProperties lnBField;
626

627
        private CT_LineProperties lnTlToBrField;
628

629
        private CT_LineProperties lnBlToTrField;
630

631
        private CT_Cell3D cell3DField;
632

633
        private CT_NoFillProperties noFillField;
634

635
        private CT_SolidColorFillProperties solidFillField;
636

637
        private CT_GradientFillProperties gradFillField;
638

639
        private CT_BlipFillProperties blipFillField;
640

641
        private CT_PatternFillProperties pattFillField;
642

643
        private CT_GroupFillProperties grpFillField;
644

645
        private CT_OfficeArtExtensionList extLstField;
646

647
        private int marLField;
648

649
        private int marRField;
650

651
        private int marTField;
652

653
        private int marBField;
654

655
        private ST_TextVerticalType vertField;
656

657
        private ST_TextAnchoringType anchorField;
658

659
        private bool anchorCtrField;
660

661
        private ST_TextHorzOverflowType horzOverflowField;
662

663
        public CT_TableCellProperties()
664
        {
665
            //this.extLstField = new CT_OfficeArtExtensionList();
666
            //this.grpFillField = new CT_GroupFillProperties();
667
            //this.pattFillField = new CT_PatternFillProperties();
668
            //this.blipFillField = new CT_BlipFillProperties();
669
            //this.gradFillField = new CT_GradientFillProperties();
670
            //this.solidFillField = new CT_SolidColorFillProperties();
671
            //this.noFillField = new CT_NoFillProperties();
672
            //this.cell3DField = new CT_Cell3D();
673
            //this.lnBlToTrField = new CT_LineProperties();
674
            //this.lnTlToBrField = new CT_LineProperties();
675
            //this.lnBField = new CT_LineProperties();
676
            //this.lnTField = new CT_LineProperties();
677
            //this.lnRField = new CT_LineProperties();
678
            //this.lnLField = new CT_LineProperties();
679
            this.marLField = 91440;
680
            this.marRField = 91440;
681
            this.marTField = 45720;
682
            this.marBField = 45720;
683
            this.vertField = ST_TextVerticalType.horz;
684
            this.anchorField = ST_TextAnchoringType.t;
685
            this.anchorCtrField = false;
686
            this.horzOverflowField = ST_TextHorzOverflowType.clip;
687
        }
688

689
        [XmlElement(Order = 0)]
690
        public CT_LineProperties lnL
691
        {
692
            get
693
            {
694
                return this.lnLField;
695
            }
696
            set
697
            {
698
                this.lnLField = value;
699
            }
700
        }
701

702
        [XmlElement(Order = 1)]
703
        public CT_LineProperties lnR
704
        {
705
            get
706
            {
707
                return this.lnRField;
708
            }
709
            set
710
            {
711
                this.lnRField = value;
712
            }
713
        }
714

715
        [XmlElement(Order = 2)]
716
        public CT_LineProperties lnT
717
        {
718
            get
719
            {
720
                return this.lnTField;
721
            }
722
            set
723
            {
724
                this.lnTField = value;
725
            }
726
        }
727

728
        [XmlElement(Order = 3)]
729
        public CT_LineProperties lnB
730
        {
731
            get
732
            {
733
                return this.lnBField;
734
            }
735
            set
736
            {
737
                this.lnBField = value;
738
            }
739
        }
740

741
        [XmlElement(Order = 4)]
742
        public CT_LineProperties lnTlToBr
743
        {
744
            get
745
            {
746
                return this.lnTlToBrField;
747
            }
748
            set
749
            {
750
                this.lnTlToBrField = value;
751
            }
752
        }
753

754
        [XmlElement(Order = 5)]
755
        public CT_LineProperties lnBlToTr
756
        {
757
            get
758
            {
759
                return this.lnBlToTrField;
760
            }
761
            set
762
            {
763
                this.lnBlToTrField = value;
764
            }
765
        }
766

767
        [XmlElement(Order = 6)]
768
        public CT_Cell3D cell3D
769
        {
770
            get
771
            {
772
                return this.cell3DField;
773
            }
774
            set
775
            {
776
                this.cell3DField = value;
777
            }
778
        }
779

780
        [XmlElement(Order = 7)]
781
        public CT_NoFillProperties noFill
782
        {
783
            get
784
            {
785
                return this.noFillField;
786
            }
787
            set
788
            {
789
                this.noFillField = value;
790
            }
791
        }
792

793
        [XmlElement(Order = 8)]
794
        public CT_SolidColorFillProperties solidFill
795
        {
796
            get
797
            {
798
                return this.solidFillField;
799
            }
800
            set
801
            {
802
                this.solidFillField = value;
803
            }
804
        }
805

806
        [XmlElement(Order = 9)]
807
        public CT_GradientFillProperties gradFill
808
        {
809
            get
810
            {
811
                return this.gradFillField;
812
            }
813
            set
814
            {
815
                this.gradFillField = value;
816
            }
817
        }
818

819
        [XmlElement(Order = 10)]
820
        public CT_BlipFillProperties blipFill
821
        {
822
            get
823
            {
824
                return this.blipFillField;
825
            }
826
            set
827
            {
828
                this.blipFillField = value;
829
            }
830
        }
831

832
        [XmlElement(Order = 11)]
833
        public CT_PatternFillProperties pattFill
834
        {
835
            get
836
            {
837
                return this.pattFillField;
838
            }
839
            set
840
            {
841
                this.pattFillField = value;
842
            }
843
        }
844

845
        [XmlElement(Order = 12)]
846
        public CT_GroupFillProperties grpFill
847
        {
848
            get
849
            {
850
                return this.grpFillField;
851
            }
852
            set
853
            {
854
                this.grpFillField = value;
855
            }
856
        }
857

858
        [XmlElement(Order = 13)]
859
        public CT_OfficeArtExtensionList extLst
860
        {
861
            get
862
            {
863
                return this.extLstField;
864
            }
865
            set
866
            {
867
                this.extLstField = value;
868
            }
869
        }
870

871
        [XmlAttribute]
872
        [DefaultValue(91440)]
873
        public int marL
874
        {
875
            get
876
            {
877
                return this.marLField;
878
            }
879
            set
880
            {
881
                this.marLField = value;
882
            }
883
        }
884

885
        [XmlAttribute]
886
        [DefaultValue(91440)]
887
        public int marR
888
        {
889
            get
890
            {
891
                return this.marRField;
892
            }
893
            set
894
            {
895
                this.marRField = value;
896
            }
897
        }
898

899
        [XmlAttribute]
900
        [DefaultValue(45720)]
901
        public int marT
902
        {
903
            get
904
            {
905
                return this.marTField;
906
            }
907
            set
908
            {
909
                this.marTField = value;
910
            }
911
        }
912

913
        [XmlAttribute]
914
        [DefaultValue(45720)]
915
        public int marB
916
        {
917
            get
918
            {
919
                return this.marBField;
920
            }
921
            set
922
            {
923
                this.marBField = value;
924
            }
925
        }
926

927
        [XmlAttribute]
928
        [DefaultValue(ST_TextVerticalType.horz)]
929
        public ST_TextVerticalType vert
930
        {
931
            get
932
            {
933
                return this.vertField;
934
            }
935
            set
936
            {
937
                this.vertField = value;
938
            }
939
        }
940

941
        [XmlAttribute]
942
        [DefaultValue(ST_TextAnchoringType.t)]
943
        public ST_TextAnchoringType anchor
944
        {
945
            get
946
            {
947
                return this.anchorField;
948
            }
949
            set
950
            {
951
                this.anchorField = value;
952
            }
953
        }
954

955
        [XmlAttribute]
956
        [DefaultValue(false)]
957
        public bool anchorCtr
958
        {
959
            get
960
            {
961
                return this.anchorCtrField;
962
            }
963
            set
964
            {
965
                this.anchorCtrField = value;
966
            }
967
        }
968

969
        [XmlAttribute]
970
        [DefaultValue(ST_TextHorzOverflowType.clip)]
971
        public ST_TextHorzOverflowType horzOverflow
972
        {
973
            get
974
            {
975
                return this.horzOverflowField;
976
            }
977
            set
978
            {
979
                this.horzOverflowField = value;
980
            }
981
        }
982
    }
983

984

985
    [Serializable]
986
    [DebuggerStepThrough]
987
    [System.ComponentModel.DesignerCategoryAttribute("code")]
988
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")]
989
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", IsNullable = true)]
990
    public class CT_TableGrid
991
    {
992

993
        private List<CT_TableCol> gridColField;
994

995
        public CT_TableGrid()
996
        {
997
            this.gridColField = new List<CT_TableCol>();
998
        }
999

1000
        [XmlElement("gridCol", Order = 0)]
1001
        public List<CT_TableCol> gridCol
1002
        {
1003
            get
1004
            {
1005
                return this.gridColField;
1006
            }
1007
            set
1008
            {
1009
                this.gridColField = value;
1010
            }
1011
        }
1012
    }
1013
}
1014

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.