npoi

Форк
0
/
DiagramColorTransform.cs 
703 строки · 19.2 Кб
1
// ------------------------------------------------------------------------------
2
//  <auto-generated>
3
//    Generated by Xsd2Code. Version 3.4.0.38967
4
//    <NameSpace>NPOI.OpenXmlFormats.Dml.Diagram</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.Diagram
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
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
19
    [Serializable]
20
    [DebuggerStepThrough]
21
    [System.ComponentModel.DesignerCategoryAttribute("code")]
22
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
23
    [XmlRoot("colorsDef", Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = false)]
24
    public partial class CT_ColorTransform
25
    {
26

27
        private List<CT_CTName> titleField;
28

29
        private List<CT_CTDescription> descField;
30

31
        private List<CT_CTCategory> catLstField;
32

33
        private List<CT_CTStyleLabel> styleLblField;
34

35
        private CT_OfficeArtExtensionList extLstField;
36

37
        private string uniqueIdField;
38

39
        private string minVerField;
40

41
        public CT_ColorTransform()
42
        {
43
            this.extLstField = new CT_OfficeArtExtensionList();
44
            this.styleLblField = new List<CT_CTStyleLabel>();
45
            this.catLstField = new List<CT_CTCategory>();
46
            this.descField = new List<CT_CTDescription>();
47
            this.titleField = new List<CT_CTName>();
48
            this.uniqueIdField = "";
49
            this.minVerField = "http://schemas.openxmlformats.org/drawingml/2006/diagram";
50
        }
51

52
        [XmlElement("title", Order = 0)]
53
        public List<CT_CTName> title
54
        {
55
            get
56
            {
57
                return this.titleField;
58
            }
59
            set
60
            {
61
                this.titleField = value;
62
            }
63
        }
64

65
        [XmlElement("desc", Order = 1)]
66
        public List<CT_CTDescription> desc
67
        {
68
            get
69
            {
70
                return this.descField;
71
            }
72
            set
73
            {
74
                this.descField = value;
75
            }
76
        }
77

78
        [XmlArray(Order = 2)]
79
        [XmlArrayItem("cat", IsNullable = false)]
80
        public List<CT_CTCategory> catLst
81
        {
82
            get
83
            {
84
                return this.catLstField;
85
            }
86
            set
87
            {
88
                this.catLstField = value;
89
            }
90
        }
91

92
        [XmlElement("styleLbl", Order = 3)]
93
        public List<CT_CTStyleLabel> styleLbl
94
        {
95
            get
96
            {
97
                return this.styleLblField;
98
            }
99
            set
100
            {
101
                this.styleLblField = value;
102
            }
103
        }
104

105
        [XmlElement(Order = 4)]
106
        public CT_OfficeArtExtensionList extLst
107
        {
108
            get
109
            {
110
                return this.extLstField;
111
            }
112
            set
113
            {
114
                this.extLstField = value;
115
            }
116
        }
117

118
        [XmlAttribute]
119
        [DefaultValue("")]
120
        public string uniqueId
121
        {
122
            get
123
            {
124
                return this.uniqueIdField;
125
            }
126
            set
127
            {
128
                this.uniqueIdField = value;
129
            }
130
        }
131

132
        [XmlAttribute]
133
        [DefaultValue("http://schemas.openxmlformats.org/drawingml/2006/diagram")]
134
        public string minVer
135
        {
136
            get
137
            {
138
                return this.minVerField;
139
            }
140
            set
141
            {
142
                this.minVerField = value;
143
            }
144
        }
145
    }
146

147
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
148
    [Serializable]
149
    [DebuggerStepThrough]
150
    [System.ComponentModel.DesignerCategoryAttribute("code")]
151
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
152
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = true)]
153
    public partial class CT_CTName
154
    {
155

156
        private string langField;
157

158
        private string valField;
159

160
        public CT_CTName()
161
        {
162
            this.langField = "";
163
        }
164

165
        [XmlAttribute]
166
        [DefaultValue("")]
167
        public string lang
168
        {
169
            get
170
            {
171
                return this.langField;
172
            }
173
            set
174
            {
175
                this.langField = value;
176
            }
177
        }
178

179
        [XmlAttribute]
180
        public string val
181
        {
182
            get
183
            {
184
                return this.valField;
185
            }
186
            set
187
            {
188
                this.valField = value;
189
            }
190
        }
191
    }
192

193
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
194
    [Serializable]
195
    [DebuggerStepThrough]
196
    [System.ComponentModel.DesignerCategoryAttribute("code")]
197
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
198
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = true)]
199
    public partial class CT_Colors
200
    {
201

202
        private List<object> itemsField;
203

204
        private ST_ClrAppMethod methField;
205

206
        private ST_HueDir hueDirField;
207

208
        public CT_Colors()
209
        {
210
            this.itemsField = new List<object>();
211
            this.methField = ST_ClrAppMethod.span;
212
            this.hueDirField = ST_HueDir.cw;
213
        }
214

215
        [XmlElement("hslClr", typeof(CT_HslColor), Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", Order = 0)]
216
        [XmlElement("prstClr", typeof(CT_PresetColor), Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", Order = 0)]
217
        [XmlElement("schemeClr", typeof(CT_SchemeColor), Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", Order = 0)]
218
        [XmlElement("scrgbClr", typeof(CT_ScRgbColor), Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", Order = 0)]
219
        [XmlElement("srgbClr", typeof(CT_SRgbColor), Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", Order = 0)]
220
        [XmlElement("sysClr", typeof(CT_SystemColor), Namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", Order = 0)]
221
        public List<object> Items
222
        {
223
            get
224
            {
225
                return this.itemsField;
226
            }
227
            set
228
            {
229
                this.itemsField = value;
230
            }
231
        }
232

233
        [XmlAttribute]
234
        [DefaultValue(ST_ClrAppMethod.span)]
235
        public ST_ClrAppMethod meth
236
        {
237
            get
238
            {
239
                return this.methField;
240
            }
241
            set
242
            {
243
                this.methField = value;
244
            }
245
        }
246

247
        [XmlAttribute]
248
        [DefaultValue(ST_HueDir.cw)]
249
        public ST_HueDir hueDir
250
        {
251
            get
252
            {
253
                return this.hueDirField;
254
            }
255
            set
256
            {
257
                this.hueDirField = value;
258
            }
259
        }
260
    }
261

262
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
263
    [Serializable]
264
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
265
    public enum ST_ClrAppMethod
266
    {
267

268
        /// <remarks/>
269
        span,
270

271
        /// <remarks/>
272
        cycle,
273

274
        /// <remarks/>
275
        repeat,
276
    }
277

278
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
279
    [Serializable]
280
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
281
    public enum ST_HueDir
282
    {
283

284
        /// <remarks/>
285
        cw,
286

287
        /// <remarks/>
288
        ccw,
289
    }
290

291
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
292
    [Serializable]
293
    [DebuggerStepThrough]
294
    [System.ComponentModel.DesignerCategoryAttribute("code")]
295
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
296
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = true)]
297
    public partial class CT_CTStyleLabel
298
    {
299

300
        private CT_Colors fillClrLstField;
301

302
        private CT_Colors linClrLstField;
303

304
        private CT_Colors effectClrLstField;
305

306
        private CT_Colors txLinClrLstField;
307

308
        private CT_Colors txFillClrLstField;
309

310
        private CT_Colors txEffectClrLstField;
311

312
        private CT_OfficeArtExtensionList extLstField;
313

314
        private string nameField;
315

316
        public CT_CTStyleLabel()
317
        {
318
            this.txEffectClrLstField = new CT_Colors();
319
            this.txFillClrLstField = new CT_Colors();
320
            this.txLinClrLstField = new CT_Colors();
321
            this.effectClrLstField = new CT_Colors();
322
            this.linClrLstField = new CT_Colors();
323
            this.fillClrLstField = new CT_Colors();
324
        }
325

326
        [XmlElement(Order = 0)]
327
        public CT_Colors fillClrLst
328
        {
329
            get
330
            {
331
                return this.fillClrLstField;
332
            }
333
            set
334
            {
335
                this.fillClrLstField = value;
336
            }
337
        }
338

339
        [XmlElement(Order = 1)]
340
        public CT_Colors linClrLst
341
        {
342
            get
343
            {
344
                return this.linClrLstField;
345
            }
346
            set
347
            {
348
                this.linClrLstField = value;
349
            }
350
        }
351

352
        [XmlElement(Order = 2)]
353
        public CT_Colors effectClrLst
354
        {
355
            get
356
            {
357
                return this.effectClrLstField;
358
            }
359
            set
360
            {
361
                this.effectClrLstField = value;
362
            }
363
        }
364

365
        [XmlElement(Order = 3)]
366
        public CT_Colors txLinClrLst
367
        {
368
            get
369
            {
370
                return this.txLinClrLstField;
371
            }
372
            set
373
            {
374
                this.txLinClrLstField = value;
375
            }
376
        }
377

378
        [XmlElement(Order = 4)]
379
        public CT_Colors txFillClrLst
380
        {
381
            get
382
            {
383
                return this.txFillClrLstField;
384
            }
385
            set
386
            {
387
                this.txFillClrLstField = value;
388
            }
389
        }
390

391
        [XmlElement(Order = 5)]
392
        public CT_Colors txEffectClrLst
393
        {
394
            get
395
            {
396
                return this.txEffectClrLstField;
397
            }
398
            set
399
            {
400
                this.txEffectClrLstField = value;
401
            }
402
        }
403

404
        [XmlElement(Order = 6)]
405
        public CT_OfficeArtExtensionList extLst
406
        {
407
            get
408
            {
409
                return this.extLstField;
410
            }
411
            set
412
            {
413
                this.extLstField = value;
414
            }
415
        }
416

417
        [XmlAttribute]
418
        public string name
419
        {
420
            get
421
            {
422
                return this.nameField;
423
            }
424
            set
425
            {
426
                this.nameField = value;
427
            }
428
        }
429
    }
430

431
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
432
    [Serializable]
433
    [DebuggerStepThrough]
434
    [System.ComponentModel.DesignerCategoryAttribute("code")]
435
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
436
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = true)]
437
    public partial class CT_CTCategory
438
    {
439

440
        private string typeField;
441

442
        private uint priField;
443

444
        [System.Xml.Serialization.XmlAttributeAttribute(DataType = "anyURI")]
445
        public string type
446
        {
447
            get
448
            {
449
                return this.typeField;
450
            }
451
            set
452
            {
453
                this.typeField = value;
454
            }
455
        }
456

457
        [XmlAttribute]
458
        public uint pri
459
        {
460
            get
461
            {
462
                return this.priField;
463
            }
464
            set
465
            {
466
                this.priField = value;
467
            }
468
        }
469
    }
470

471
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
472
    [Serializable]
473
    [DebuggerStepThrough]
474
    [System.ComponentModel.DesignerCategoryAttribute("code")]
475
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
476
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = true)]
477
    public partial class CT_CTDescription
478
    {
479

480
        private string langField;
481

482
        private string valField;
483

484
        public CT_CTDescription()
485
        {
486
            this.langField = "";
487
        }
488

489
        [XmlAttribute]
490
        [DefaultValue("")]
491
        public string lang
492
        {
493
            get
494
            {
495
                return this.langField;
496
            }
497
            set
498
            {
499
                this.langField = value;
500
            }
501
        }
502

503
        [XmlAttribute]
504
        public string val
505
        {
506
            get
507
            {
508
                return this.valField;
509
            }
510
            set
511
            {
512
                this.valField = value;
513
            }
514
        }
515
    }
516

517
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
518
    [Serializable]
519
    [DebuggerStepThrough]
520
    [System.ComponentModel.DesignerCategoryAttribute("code")]
521
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
522
    [XmlRoot("colorsDefHdr", Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = false)]
523
    public partial class CT_ColorTransformHeader
524
    {
525

526
        private List<CT_CTName> titleField;
527

528
        private List<CT_CTDescription> descField;
529

530
        private List<CT_CTCategory> catLstField;
531

532
        private CT_OfficeArtExtensionList extLstField;
533

534
        private string uniqueIdField;
535

536
        private string minVerField;
537

538
        private int resIdField;
539

540
        public CT_ColorTransformHeader()
541
        {
542
            this.catLstField = new List<CT_CTCategory>();
543
            this.descField = new List<CT_CTDescription>();
544
            this.titleField = new List<CT_CTName>();
545
            this.minVerField = "http://schemas.openxmlformats.org/drawingml/2006/diagram";
546
            this.resIdField = 0;
547
        }
548

549
        [XmlElement("title", Order = 0)]
550
        public List<CT_CTName> title
551
        {
552
            get
553
            {
554
                return this.titleField;
555
            }
556
            set
557
            {
558
                this.titleField = value;
559
            }
560
        }
561

562
        [XmlElement("desc", Order = 1)]
563
        public List<CT_CTDescription> desc
564
        {
565
            get
566
            {
567
                return this.descField;
568
            }
569
            set
570
            {
571
                this.descField = value;
572
            }
573
        }
574

575
        [XmlArray(Order = 2)]
576
        [XmlArrayItem("cat", IsNullable = false)]
577
        public List<CT_CTCategory> catLst
578
        {
579
            get
580
            {
581
                return this.catLstField;
582
            }
583
            set
584
            {
585
                this.catLstField = value;
586
            }
587
        }
588

589
        [XmlElement(Order = 3)]
590
        public CT_OfficeArtExtensionList extLst
591
        {
592
            get
593
            {
594
                return this.extLstField;
595
            }
596
            set
597
            {
598
                this.extLstField = value;
599
            }
600
        }
601

602
        [XmlAttribute]
603
        public string uniqueId
604
        {
605
            get
606
            {
607
                return this.uniqueIdField;
608
            }
609
            set
610
            {
611
                this.uniqueIdField = value;
612
            }
613
        }
614

615
        [XmlAttribute]
616
        [DefaultValue("http://schemas.openxmlformats.org/drawingml/2006/diagram")]
617
        public string minVer
618
        {
619
            get
620
            {
621
                return this.minVerField;
622
            }
623
            set
624
            {
625
                this.minVerField = value;
626
            }
627
        }
628

629
        [XmlAttribute]
630
        [DefaultValue(0)]
631
        public int resId
632
        {
633
            get
634
            {
635
                return this.resIdField;
636
            }
637
            set
638
            {
639
                this.resIdField = value;
640
            }
641
        }
642
    }
643

644
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
645
    [Serializable]
646
    [DebuggerStepThrough]
647
    [System.ComponentModel.DesignerCategoryAttribute("code")]
648
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
649
    [XmlRoot("colorsDefHdrLst", Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = false)]
650
    public partial class CT_ColorTransformHeaderLst
651
    {
652

653
        private List<CT_ColorTransformHeader> colorsDefHdrField;
654

655
        public CT_ColorTransformHeaderLst()
656
        {
657
            this.colorsDefHdrField = new List<CT_ColorTransformHeader>();
658
        }
659

660
        [XmlElement("colorsDefHdr", Order = 0)]
661
        public List<CT_ColorTransformHeader> colorsDefHdr
662
        {
663
            get
664
            {
665
                return this.colorsDefHdrField;
666
            }
667
            set
668
            {
669
                this.colorsDefHdrField = value;
670
            }
671
        }
672
    }
673

674
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.17379")]
675
    [Serializable]
676
    [DebuggerStepThrough]
677
    [System.ComponentModel.DesignerCategoryAttribute("code")]
678
    [XmlType(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram")]
679
    [XmlRoot(Namespace = "http://schemas.openxmlformats.org/drawingml/2006/diagram", IsNullable = true)]
680
    public partial class CT_CTCategories
681
    {
682

683
        private List<CT_CTCategory> catField;
684

685
        public CT_CTCategories()
686
        {
687
            this.catField = new List<CT_CTCategory>();
688
        }
689

690
        [XmlElement("cat", Order = 0)]
691
        public List<CT_CTCategory> cat
692
        {
693
            get
694
            {
695
                return this.catField;
696
            }
697
            set
698
            {
699
                this.catField = value;
700
            }
701
        }
702
    }
703
}
704

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

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

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

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