-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEPPlus.XML
13187 lines (12980 loc) · 567 KB
/
EPPlus.XML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>EPPlus</name>
</assembly>
<members>
<member name="T:OfficeOpenXml.Style.ExcelRichTextCollection">
<summary>
Collection of Richtext objects
</summary>
</member>
<member name="T:OfficeOpenXml.XmlHelper">
<summary>
Help class containing XML functions.
Can be Inherited
</summary>
</member>
<member name="M:OfficeOpenXml.XmlHelper.CreateComplexNode(System.String)">
<summary>
Create a complex node. Insert the node according to SchemaOrder
using the TopNode as the parent
</summary>
<param name="path"></param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.XmlHelper.CreateComplexNode(System.Xml.XmlNode,System.String)">
<summary>
Create a complex node. Insert the node according to the <paramref name="path"/>
using the <paramref name="topNode"/> as the parent
</summary>
<param name="topNode"></param>
<param name="path"></param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.XmlHelper.CreateComplexNode(System.Xml.XmlNode,System.String,OfficeOpenXml.XmlHelper.eNodeInsertOrder,System.Xml.XmlNode)">
<summary>
Creates complex XML nodes
</summary>
<remarks>
1. "d:conditionalFormatting"
1.1. Creates/find the first "conditionalFormatting" node
2. "d:conditionalFormatting/@sqref"
2.1. Creates/find the first "conditionalFormatting" node
2.2. Creates (if not exists) the @sqref attribute
3. "d:conditionalFormatting/@id='7'/@sqref='A9:B99'"
3.1. Creates/find the first "conditionalFormatting" node
3.2. Creates/update its @id attribute to "7"
3.3. Creates/update its @sqref attribute to "A9:B99"
4. "d:conditionalFormatting[@id='7']/@sqref='X1:X5'"
4.1. Creates/find the first "conditionalFormatting" node with @id=7
4.2. Creates/update its @sqref attribute to "X1:X5"
5. "d:conditionalFormatting[@id='7']/@id='8'/@sqref='X1:X5'/d:cfRule/@id='AB'"
5.1. Creates/find the first "conditionalFormatting" node with @id=7
5.2. Set its @id attribute to "8"
5.2. Creates/update its @sqref attribute and set it to "X1:X5"
5.3. Creates/find the first "cfRule" node (inside the node)
5.4. Creates/update its @id attribute to "AB"
6. "d:cfRule/@id=''"
6.1. Creates/find the first "cfRule" node
6.1. Remove the @id attribute
</remarks>
<param name="topNode"></param>
<param name="path"></param>
<param name="nodeInsertOrder"></param>
<param name="referenceNode"></param>
<returns>The last node creates/found</returns>
</member>
<member name="M:OfficeOpenXml.XmlHelper.GetPrependNode(System.String,System.Xml.XmlNode)">
<summary>
return Prepend node
</summary>
<param name="nodeName">name of the node to check</param>
<param name="node">Topnode to check children</param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.XmlHelper.InserAfter(System.Xml.XmlNode,System.String,System.Xml.XmlNode)">
<summary>
Insert the new node before any of the nodes in the comma separeted list
</summary>
<param name="parentNode">Parent node</param>
<param name="beforeNodes">comma separated list containing nodes to insert after. Left to right order</param>
<param name="newNode">The new node to be inserterd</param>
</member>
<member name="P:OfficeOpenXml.XmlHelper.SchemaNodeOrder">
<summary>
Schema order list
</summary>
</member>
<member name="T:OfficeOpenXml.XmlHelper.eNodeInsertOrder">
<summary>
Options to insert a node in the XmlDocument
</summary>
</member>
<member name="F:OfficeOpenXml.XmlHelper.eNodeInsertOrder.First">
<summary>
Insert as first node of "topNode"
</summary>
</member>
<member name="F:OfficeOpenXml.XmlHelper.eNodeInsertOrder.Last">
<summary>
Insert as the last child of "topNode"
</summary>
</member>
<member name="F:OfficeOpenXml.XmlHelper.eNodeInsertOrder.After">
<summary>
Insert after the "referenceNode"
</summary>
</member>
<member name="F:OfficeOpenXml.XmlHelper.eNodeInsertOrder.Before">
<summary>
Insert before the "referenceNode"
</summary>
</member>
<member name="F:OfficeOpenXml.XmlHelper.eNodeInsertOrder.SchemaOrder">
<summary>
Use the Schema List to insert in the right order. If the Schema list
is null or empty, consider "Last" as the selected option
</summary>
</member>
<member name="M:OfficeOpenXml.Style.ExcelRichTextCollection.Add(System.String)">
<summary>
Add a rich text string
</summary>
<param name="Text">The text to add</param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.Style.ExcelRichTextCollection.Clear">
<summary>
Clear the collection
</summary>
</member>
<member name="M:OfficeOpenXml.Style.ExcelRichTextCollection.RemoveAt(System.Int32)">
<summary>
Removes an item at the specific index
</summary>
<param name="Index"></param>
</member>
<member name="M:OfficeOpenXml.Style.ExcelRichTextCollection.Remove(OfficeOpenXml.Style.ExcelRichText)">
<summary>
Removes an item
</summary>
<param name="Item"></param>
</member>
<member name="P:OfficeOpenXml.Style.ExcelRichTextCollection.Item(System.Int32)">
<summary>
Collection containing the richtext objects
</summary>
<param name="Index"></param>
<returns></returns>
</member>
<member name="P:OfficeOpenXml.Style.ExcelRichTextCollection.Count">
<summary>
Items in the list
</summary>
</member>
<member name="P:OfficeOpenXml.Style.ExcelRichTextCollection.Text">
<summary>
The text
</summary>
</member>
<member name="T:OfficeOpenXml.Drawing.ExcelView3D">
<summary>
3D settings
</summary>
</member>
<member name="P:OfficeOpenXml.Drawing.ExcelView3D.Perspective">
<summary>
Degree of perspective
</summary>
</member>
<member name="P:OfficeOpenXml.Drawing.ExcelView3D.RotX">
<summary>
Rotation X-axis
</summary>
</member>
<member name="P:OfficeOpenXml.Drawing.ExcelView3D.RotY">
<summary>
Rotation Y-axis
</summary>
</member>
<member name="P:OfficeOpenXml.Drawing.ExcelView3D.RightAngleAxes">
<summary>
Right Angle Axes
</summary>
</member>
<member name="P:OfficeOpenXml.Drawing.ExcelView3D.DepthPercent">
<summary>
Depth % of base
</summary>
</member>
<member name="P:OfficeOpenXml.Drawing.ExcelView3D.HeightPercent">
<summary>
Height % of base
</summary>
</member>
<member name="T:OfficeOpenXml.Drawing.Chart.ExcelChartPlotArea">
<summary>
A charts plot area
</summary>
</member>
<member name="T:OfficeOpenXml.Utils.Require">
<summary>
Utility for validation
</summary>
</member>
<member name="F:OfficeOpenXml.Table.PivotTable.eSourceType.Consolidation">
<summary>
Indicates that the cache contains data that consolidates ranges.
</summary>
</member>
<member name="F:OfficeOpenXml.Table.PivotTable.eSourceType.External">
<summary>
Indicates that the cache contains data from an external data source.
</summary>
</member>
<member name="F:OfficeOpenXml.Table.PivotTable.eSourceType.Scenario">
<summary>
Indicates that the cache contains a scenario summary report
</summary>
</member>
<member name="F:OfficeOpenXml.Table.PivotTable.eSourceType.Worksheet">
<summary>
Indicates that the cache contains worksheet data
</summary>
</member>
<member name="T:OfficeOpenXml.Table.PivotTable.ExcelPivotCacheDefinition">
<summary>
Cache definition. This class defines the source data. Note that one cache definition can be shared between many pivot tables.
</summary>
</member>
<member name="P:OfficeOpenXml.Table.PivotTable.ExcelPivotCacheDefinition.Part">
<summary>
Reference to the internal package part
</summary>
</member>
<member name="P:OfficeOpenXml.Table.PivotTable.ExcelPivotCacheDefinition.CacheDefinitionXml">
<summary>
Provides access to the XML data representing the cache definition in the package.
</summary>
</member>
<member name="P:OfficeOpenXml.Table.PivotTable.ExcelPivotCacheDefinition.CacheDefinitionUri">
<summary>
The package internal URI to the pivottable cache definition Xml Document.
</summary>
</member>
<member name="P:OfficeOpenXml.Table.PivotTable.ExcelPivotCacheDefinition.PivotTable">
<summary>
Referece to the PivoTable object
</summary>
</member>
<member name="P:OfficeOpenXml.Table.PivotTable.ExcelPivotCacheDefinition.SourceRange">
<summary>
The source data range when the pivottable has a worksheet datasource.
The number of columns in the range must be intact if this property is changed.
The range must be in the same workbook as the pivottable.
</summary>
</member>
<member name="P:OfficeOpenXml.Table.PivotTable.ExcelPivotCacheDefinition.CacheSource">
<summary>
Type of source data
</summary>
</member>
<member name="T:OfficeOpenXml.eWorkSheetHidden">
<summary>
Worksheet hidden enumeration
</summary>
</member>
<member name="F:OfficeOpenXml.eWorkSheetHidden.Visible">
<summary>
The worksheet is visible
</summary>
</member>
<member name="F:OfficeOpenXml.eWorkSheetHidden.Hidden">
<summary>
The worksheet is hidden but can be shown by the user via the user interface
</summary>
</member>
<member name="F:OfficeOpenXml.eWorkSheetHidden.VeryHidden">
<summary>
The worksheet is hidden and cannot be shown by the user via the user interface
</summary>
</member>
<member name="T:OfficeOpenXml.ExcelWorksheet">
<summary>
Represents an Excel worksheet and provides access to its properties and methods
</summary>
</member>
<member name="F:OfficeOpenXml.ExcelWorksheet.outLineSummaryBelowPath">
<outlinePr applyStyles="1" summaryBelow="0" summaryRight="0" /> *
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.#ctor(System.Xml.XmlNamespaceManager,OfficeOpenXml.ExcelPackage,System.String,System.Uri,System.String,System.Int32,System.Int32,OfficeOpenXml.eWorkSheetHidden)">
<summary>
A worksheet
</summary>
<param name="ns">Namespacemanager</param>
<param name="excelPackage">Package</param>
<param name="relID">Relationship ID</param>
<param name="uriWorksheet">URI</param>
<param name="sheetName">Name of the sheet</param>
<param name="sheetID">Sheet id</param>
<param name="positionID">Position</param>
<param name="hide">hide</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.ReadXmlReaderUntil(System.Xml.XmlTextReader,System.String,System.String)">
<summary>
Read until the node is found. If not found the xmlreader is reseted.
</summary>
<param name="xr">The reader</param>
<param name="nodeText">Text to search for</param>
<param name="altNode">Alternative text to search for</param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.LoadHyperLinks(System.Xml.XmlTextReader)">
<summary>
Load Hyperlinks
</summary>
<param name="xr">The reader</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.LoadCells(System.Xml.XmlTextReader)">
<summary>
Load cells
</summary>
<param name="xr">The reader</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.LoadMergeCells(System.Xml.XmlTextReader)">
<summary>
Load merged cells
</summary>
<param name="xr"></param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.UpdateMergedCells(System.IO.StreamWriter)">
<summary>
Update merged cells
</summary>
<param name="sw">The writer</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.AddRow(System.Xml.XmlTextReader,System.Int32)">
<summary>
Reads a row from the XML reader
</summary>
<param name="xr">The reader</param>
<param name="row">The row number</param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Cell(System.Int32,System.Int32)">
<summary>
Provides access to an individual cell within the worksheet.
</summary>
<param name="row">The row number in the worksheet</param>
<param name="col">The column number in the worksheet</param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Row(System.Int32)">
<summary>
Provides access to an individual row within the worksheet so you can set its properties.
</summary>
<param name="row">The row number in the worksheet</param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Column(System.Int32)">
<summary>
Provides access to an individual column within the worksheet so you can set its properties.
</summary>
<param name="col">The column number in the worksheet</param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.ToString">
<summary>
Returns the name of the worksheet
</summary>
<returns>The name of the worksheet</returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Select(System.String)">
<summary>
Selects a range in the worksheet. The active cell is the topmost cell.
Make the current worksheet active.
</summary>
<param name="Address">An address range</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Select(System.String,System.Boolean)">
<summary>
Selects a range in the worksheet. The actice cell is the topmost cell.
</summary>
<param name="Address">A range of cells</param>
<param name="SelectSheet">Make the sheet active</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Select(OfficeOpenXml.ExcelAddress)">
<summary>
Selects a range in the worksheet. The active cell is the topmost cell of the first address.
Make the current worksheet active.
</summary>
<param name="Address">An address range</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Select(OfficeOpenXml.ExcelAddress,System.Boolean)">
<summary>
Selects a range in the worksheet. The active cell is the topmost cell of the first address.
</summary>
<param name="Address">A range of cells</param>
<param name="SelectSheet">Make the sheet active</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.InsertRow(System.Int32,System.Int32)">
<summary>
Inserts a new row into the spreadsheet. Existing rows below the position are
shifted down. All formula are updated to take account of the new row.
</summary>
<param name="rowFrom">The position of the new row</param>
<param name="rows">Number of rows to insert</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.InsertRow(System.Int32,System.Int32,System.Int32)">
<summary>
Inserts a new row into the spreadsheet. Existing rows below the position are
shifted down. All formula are updated to take account of the new row.
</summary>
<param name="rowFrom">The position of the new row</param>
<param name="rows">Number of rows to insert.</param>
<param name="copyStylesFromRow">Copy Styles from this row. Applied to all inserted rows</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.FixMergedCells(System.Int32,System.Int32,System.Boolean)">
<summary>
Adds a value to the row of merged cells to fix for inserts or deletes
</summary>
<param name="position"></param>
<param name="rows"></param>
<param name="delete"></param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.DeleteRow(System.Int32,System.Int32)">
<summary>
Deletes the specified row from the worksheet.
</summary>
<param name="rowFrom">The number of the start row to be deleted</param>
<param name="rows">Number of rows to delete</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.DeleteRow(System.Int32,System.Int32,System.Boolean)">
<summary>
Deletes the specified row from the worksheet.
</summary>
<param name="rowFrom">The number of the start row to be deleted</param>
<param name="rows">Number of rows to delete</param>
<param name="shiftOtherRowsUp">Not used. Rows are always shifted</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.GetValue(System.Int32,System.Int32)">
<summary>
Get the cell value from thw worksheet
</summary>
<param name="Row">The row number</param>
<param name="Column">The row number</param>
<returns>The value</returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.GetValue``1(System.Int32,System.Int32)">
<summary>
Get a strongly typed cell value from the worksheet
</summary>
<typeparam name="T">The type</typeparam>
<param name="Row">The row number</param>
<param name="Column">The row number</param>
<returns>The value. If the value can't be converted to the specified type, the default value will be returned</returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.SetValue(System.Int32,System.Int32,System.Object)">
<summary>
Set the value of a cell
</summary>
<param name="Row">The row number</param>
<param name="Column">The column number</param>
<param name="Value">The value</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.SetValue(System.String,System.Object)">
<summary>
Set the value of a cell
</summary>
<param name="Address">The Excel address</param>
<param name="Value">The value</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.GetMergeCellId(System.Int32,System.Int32)">
<summary>
Get MergeCell Index No
</summary>
<param name="row"></param>
<param name="column"></param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.Save">
<summary>
Saves the worksheet to the package.
</summary>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.DeletePrinterSettings">
<summary>
Delete the printersettings relationship and part.
</summary>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.SaveTables">
<summary>
Save all table data
</summary>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.UpdateColumnData(System.IO.StreamWriter)">
<summary>
Inserts the cols collection into the XML document
</summary>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.UpdateRowCellData(System.IO.StreamWriter)">
<summary>
Insert row and cells into the XML document
</summary>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.UpdateHyperLinks(System.IO.StreamWriter)">
<summary>
Update xml with hyperlinks
</summary>
<param name="sw">The stream</param>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.CreateHyperLinkCollection">
<summary>
Create the hyperlinks node in the XML
</summary>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.GetStyleID(System.String)">
<summary>
Returns the style ID given a style name.
The style ID will be created if not found, but only if the style name exists!
</summary>
<param name="StyleName"></param>
<returns></returns>
</member>
<member name="M:OfficeOpenXml.ExcelWorksheet.GetMaxShareFunctionIndex(System.Boolean)">
<summary>
Get the next ID from a shared formula or an Array formula
Sharedforumlas will have an id from 0-x. Array formula ids start from 0x4000001-.
</summary>
<param name="isArray">If the formula is an array formula</param>
<returns></returns>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.WorksheetUri">
<summary>
The Uri to the worksheet within the package
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Part">
<summary>
The PackagePart for the worksheet within the package
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.RelationshipID">
<summary>
The ID for the worksheet's relationship with the workbook in the package
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.SheetID">
<summary>
The unique identifier for the worksheet.
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.PositionID">
<summary>
The position of the worksheet.
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Index">
<summary>
The index in the worksheets collection
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.AutoFilterAddress">
<summary>
Address for autofilter
<seealso cref="P:OfficeOpenXml.ExcelRangeBase.AutoFilter"/>
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.View">
<summary>
Returns a ExcelWorksheetView object that allows you to set the view state properties of the worksheet
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Name">
<summary>
The worksheet's display name as it appears on the tab
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Names">
<summary>
Provides access to named ranges
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Hidden">
<summary>
Indicates if the worksheet is hidden in the workbook
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.DefaultRowHeight">
<summary>
Get/set the default height of all rows in the worksheet
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.DefaultColWidth">
<summary>
Get/set the default width of all rows in the worksheet
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.OutLineSummaryBelow">
<summary>
Summary rows below details
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.OutLineSummaryRight">
<summary>
Summary rows to right of details
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.OutLineApplyStyle">
<summary>
Automatic styles
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.TabColor">
<summary>
Color of the sheet tab
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.WorksheetXml">
<summary>
The XML document holding the worksheet data.
All column, row, cell, pagebreak, merged cell and hyperlink-data are loaded into memory and removed from the document when loading the document.
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.VmlDrawingsComments">
<summary>
Vml drawings. underlaying object for comments
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Comments">
<summary>
Collection of comments
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.HeaderFooter">
<summary>
A reference to the header and footer class which allows you to
set the header and footer for all odd, even and first pages of the worksheet
</summary>
<remarks>
To format the text you can use the following format
<list type="table">
<listheader><term>Prefix</term><description>Description</description></listheader>
<item><term>&U</term><description>Underlined</description></item>
<item><term>&E</term><description>Double Underline</description></item>
<item><term>&K:xxxxxx</term><description>Color. ex &K:FF0000 for red</description></item>
<item><term>&"Font,Regular Bold Italic"</term><description>Changes the font. Regular or Bold or Italic or Bold Italic can be used. ex &"Arial,Bold Italic"</description></item>
<item><term>&nn</term><description>Change font size. nn is an integer. ex &24</description></item>
<item><term>&G</term><description>Placeholder for images. Images can not be added by the library, but its possible to use in a template.</description></item>
</list>
</remarks>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.PrinterSettings">
<summary>
Printer settings
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Cells">
<summary>
Provides access to a range of cells
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.SelectedRange">
<summary>
Provides access to the selected range of cells
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.MergedCells">
<summary>
Addresses to merged ranges
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Dimension">
<summary>
Dimension address for the worksheet.
Top left cell to Bottom right.
If the worksheet has no cells, null is returned
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Protection">
<summary>
Access to sheet protection properties
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Drawings">
<summary>
Collection of drawing-objects like shapes, images and charts
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Tables">
<summary>
Tables defined in the worksheet.
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.PivotTables">
<summary>
Pivottables defined in the worksheet.
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.ConditionalFormatting">
<summary>
ConditionalFormatting defined in the worksheet. Use the Add methods to create ConditionalFormatting and add them to the worksheet. Then
set the properties on the instance returned.
</summary>
<seealso cref="T:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingCollection"/>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.DataValidations">
<summary>
DataValidation defined in the worksheet. Use the Add methods to create DataValidations and add them to the worksheet. Then
set the properties on the instance returned.
</summary>
<seealso cref="T:OfficeOpenXml.DataValidation.ExcelDataValidationCollection"/>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.BackgroundImage">
<summary>
An image displayed as the background of the worksheet.
</summary>
</member>
<member name="P:OfficeOpenXml.ExcelWorksheet.Workbook">
<summary>
The workbook object
</summary>
</member>
<member name="T:OfficeOpenXml.ExcelWorksheet.MergeCellsCollection`1">
<summary>
Collection containing merged cell addresses
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="T:OfficeOpenXml.ExcelBackgroundImage">
<summary>
An image that fills the background of the worksheet.
</summary>
</member>
<member name="M:OfficeOpenXml.ExcelBackgroundImage.#ctor(System.Xml.XmlNamespaceManager,System.Xml.XmlNode,OfficeOpenXml.ExcelWorksheet)">
<summary>
</summary>
<param name="nsm"></param>
<param name="topNode">The topnode of the worksheet</param>
<param name="workSheet">Worksheet reference</param>
</member>
<member name="M:OfficeOpenXml.ExcelBackgroundImage.SetFromFile(System.IO.FileInfo)">
<summary>
Set the picture from an image file.
The image file will be saved as a blob, so make sure Excel supports the image format.
</summary>
<param name="PictureFile">The image file.</param>
</member>
<member name="P:OfficeOpenXml.ExcelBackgroundImage.Image">
<summary>
The background image of the worksheet.
The image will be saved internally as a jpg.
</summary>
</member>
<member name="T:OfficeOpenXml.DataValidation.ExcelDataValidationOperator">
<summary>
Operator for comparison between Formula and Formula2 in a validation.
</summary>
</member>
<member name="T:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormulaValue`1">
<summary>
This class represents a validation formula. Its value can be specified as a value of the specified datatype or as a formula.
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="T:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormula">
<summary>
Base class for a formula
</summary>
</member>
<member name="M:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormula.#ctor(System.Xml.XmlNamespaceManager,System.Xml.XmlNode,System.String)">
<summary>
Constructor
</summary>
<param name="namespaceManager">Namespacemanger of the worksheet</param>
<param name="topNode">validation top node</param>
<param name="formulaPath">xml path of the current formula</param>
</member>
<member name="M:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormula.GetXmlValue">
<summary>
This value will be stored in the xml. Can be overridden by subclasses
</summary>
</member>
<member name="M:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormula.GetValueAsString">
<summary>
Returns the value as a string. Must be implemented by subclasses
</summary>
<returns></returns>
</member>
<member name="P:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormula.State">
<summary>
State of the validationformula, i.e. tells if value or formula is set
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormula.ExcelFormula">
<summary>
A formula which output must match the current validation type
</summary>
</member>
<member name="M:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormulaValue`1.#ctor(System.Xml.XmlNamespaceManager,System.Xml.XmlNode,System.String)">
<summary>
Constructor
</summary>
<param name="namespaceManager">Namespacemanger of the worksheet</param>
<param name="topNode">validation top node</param>
<param name="formulaPath">xml path of the current formula</param>
</member>
<member name="P:OfficeOpenXml.DataValidation.Formulas.ExcelDataValidationFormulaValue`1.Value">
<summary>
Typed value
</summary>
</member>
<member name="T:OfficeOpenXml.DataValidation.Formulas.Contracts.IExcelDataValidationFormulaInt">
<summary>
Interface for a data validation formula of <see cref="T:System.Int32"/> value
</summary>
</member>
<member name="T:OfficeOpenXml.DataValidation.Formulas.Contracts.IExcelDataValidationFormulaWithValue`1">
<summary>
Interface for a formula with a value
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="T:OfficeOpenXml.DataValidation.Formulas.Contracts.IExcelDataValidationFormula">
<summary>
Interface for a data validation formula
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Formulas.Contracts.IExcelDataValidationFormula.ExcelFormula">
<summary>
An excel formula
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Formulas.Contracts.IExcelDataValidationFormulaWithValue`1.Value">
<summary>
The value.
</summary>
</member>
<member name="T:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidationCustom">
<summary>
Data validation interface for custom validation.
</summary>
</member>
<member name="T:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation">
<summary>
Interface for data validation
</summary>
</member>
<member name="M:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.Validate">
<summary>
Validates the state of the validation.
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.Address">
<summary>
Address of data validation
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.ValidationType">
<summary>
Validation type
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.ErrorStyle">
<summary>
Controls how Excel will handle invalid values.
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.AllowBlank">
<summary>
True if input message should be shown
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.ShowInputMessage">
<summary>
True if input message should be shown
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.ShowErrorMessage">
<summary>
True if error message should be shown.
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.ErrorTitle">
<summary>
Title of error message box (see property ShowErrorMessage)
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.Error">
<summary>
Error message box text (see property ShowErrorMessage)
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.PromptTitle">
<summary>
Title of info box if input message should be shown (see property ShowInputMessage)
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.Prompt">
<summary>
Info message text (see property ShowErrorMessage)
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidation.AllowsOperator">
<summary>
True if the current validation type allows operator.
</summary>
</member>
<member name="T:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidationWithOperator">
<summary>
Represents a validation with an operator
</summary>
</member>
<member name="P:OfficeOpenXml.DataValidation.Contracts.IExcelDataValidationWithOperator.Operator">
<summary>
Operator type
</summary>
</member>
<member name="T:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingNotContainsErrors">
<summary>
ExcelConditionalFormattingNotContainsErrors
</summary>
</member>
<member name="T:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingRule">
<summary>
</summary>
</member>
<member name="T:OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule">
<summary>
Interface for conditional formatting rule
</summary>
</member>
<member name="P:OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule.Node">
<summary>
The 'cfRule' XML node
</summary>
</member>
<member name="P:OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule.Type">
<summary>
Type of conditional formatting rule. ST_CfType §18.18.12.
</summary>
</member>
<member name="P:OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule.Address">
<summary>
<para>Range over which these conditional formatting rules apply.</para>
<para>The possible values for this attribute are defined by the
ST_Sqref simple type (§18.18.76).</para>
</summary>
</member>
<member name="P:OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule.Priority">
<summary>
The priority of this conditional formatting rule. This value is used to determine
which format should be evaluated and rendered. Lower numeric values are higher
priority than higher numeric values, where 1 is the highest priority.
</summary>
</member>
<member name="P:OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule.StopIfTrue">
<summary>
If this flag is 1, no rules with lower priority shall be applied over this rule,
when this rule evaluates to true.
</summary>
</member>
<member name="P:OfficeOpenXml.ConditionalFormatting.Contracts.IExcelConditionalFormattingRule.Style">
<summary>
Gives access to the differencial styling (DXF) for the rule.
</summary>
</member>
<member name="F:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingRule._changingPriority">
<summary>
Sinalize that we are in a Cnaging Priorities opeartion so that we won't enter
a recursive loop.
</summary>
</member>
<member name="M:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingRule.#ctor(OfficeOpenXml.ConditionalFormatting.eExcelConditionalFormattingRuleType,OfficeOpenXml.ExcelAddress,System.Int32,OfficeOpenXml.ExcelWorksheet,System.Xml.XmlNode,System.Xml.XmlNamespaceManager)">
<summary>
Initialize the <see cref="T:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingRule"/>
</summary>
<param name="type"></param>
<param name="address"></param>
<param name="priority">Used also as the cfRule unique key</param>
<param name="worksheet"></param>
<param name="itemElementNode"></param>
<param name="namespaceManager"></param>
</member>
<member name="M:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingRule.#ctor(OfficeOpenXml.ConditionalFormatting.eExcelConditionalFormattingRuleType,OfficeOpenXml.ExcelAddress,System.Int32,OfficeOpenXml.ExcelWorksheet,System.Xml.XmlNamespaceManager)">
<summary>
Initialize the <see cref="T:OfficeOpenXml.ConditionalFormatting.ExcelConditionalFormattingRule"/>
</summary>
<param name="type"></param>
<param name="address"></param>
<param name="priority"></param>
<param name="worksheet"></param>