1 | /*******************************************************************************
|
---|
2 | * You may amend and distribute as you like, but don't remove this header!
|
---|
3 | *
|
---|
4 | * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.
|
---|
5 | * See http://www.codeplex.com/EPPlus for details.
|
---|
6 | *
|
---|
7 | * Copyright (C) 2011 Jan Källman
|
---|
8 | *
|
---|
9 | * This library is free software; you can redistribute it and/or
|
---|
10 | * modify it under the terms of the GNU Lesser General Public
|
---|
11 | * License as published by the Free Software Foundation; either
|
---|
12 | * version 2.1 of the License, or (at your option) any later version.
|
---|
13 |
|
---|
14 | * This library is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
17 | * See the GNU Lesser General Public License for more details.
|
---|
18 | *
|
---|
19 | * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
|
---|
20 | * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
|
---|
21 | *
|
---|
22 | * All code and executables are provided "as is" with no warranty either express or implied.
|
---|
23 | * The author accepts no liability for any damage or loss of business that this product may cause.
|
---|
24 | *
|
---|
25 | * Code change notes:
|
---|
26 | *
|
---|
27 | * Author Change Date
|
---|
28 | * ******************************************************************************
|
---|
29 | * Jan Källman Added 30-AUG-2010
|
---|
30 | * Jan Källman License changed GPL-->LGPL 2011-12-16
|
---|
31 | *******************************************************************************/
|
---|
32 | using System;
|
---|
33 | using System.Collections.Generic;
|
---|
34 | using System.Globalization;
|
---|
35 | using System.Text;
|
---|
36 | using System.Xml;
|
---|
37 |
|
---|
38 | namespace OfficeOpenXml.Table
|
---|
39 | {
|
---|
40 | /// <summary>
|
---|
41 | /// A collection of table columns
|
---|
42 | /// </summary>
|
---|
43 | public class ExcelTableColumnCollection : IEnumerable<ExcelTableColumn>
|
---|
44 | {
|
---|
45 | List<ExcelTableColumn> _cols = new List<ExcelTableColumn>();
|
---|
46 | Dictionary<string, int> _colNames = new Dictionary<string, int>(StringComparer.InvariantCultureIgnoreCase);
|
---|
47 | public ExcelTableColumnCollection(ExcelTable table)
|
---|
48 | {
|
---|
49 | Table = table;
|
---|
50 | foreach(XmlNode node in table.TableXml.SelectNodes("//d:table/d:tableColumns/d:tableColumn",table.NameSpaceManager))
|
---|
51 | {
|
---|
52 | _cols.Add(new ExcelTableColumn(table.NameSpaceManager, node, table, _cols.Count));
|
---|
53 | _colNames.Add(_cols[_cols.Count - 1].Name, _cols.Count - 1);
|
---|
54 | }
|
---|
55 | }
|
---|
56 | /// <summary>
|
---|
57 | /// A reference to the table object
|
---|
58 | /// </summary>
|
---|
59 | public ExcelTable Table
|
---|
60 | {
|
---|
61 | get;
|
---|
62 | private set;
|
---|
63 | }
|
---|
64 | /// <summary>
|
---|
65 | /// Number of items in the collection
|
---|
66 | /// </summary>
|
---|
67 | public int Count
|
---|
68 | {
|
---|
69 | get
|
---|
70 | {
|
---|
71 | return _cols.Count;
|
---|
72 | }
|
---|
73 | }
|
---|
74 | /// <summary>
|
---|
75 | /// The column Index. Base 0.
|
---|
76 | /// </summary>
|
---|
77 | /// <param name="Index"></param>
|
---|
78 | /// <returns></returns>
|
---|
79 | public ExcelTableColumn this[int Index]
|
---|
80 | {
|
---|
81 | get
|
---|
82 | {
|
---|
83 | if (Index < 0 || Index >= _cols.Count)
|
---|
84 | {
|
---|
85 | throw (new ArgumentOutOfRangeException("Column index out of range"));
|
---|
86 | }
|
---|
87 | return _cols[Index] as ExcelTableColumn;
|
---|
88 | }
|
---|
89 | }
|
---|
90 | /// <summary>
|
---|
91 | /// Indexer
|
---|
92 | /// </summary>
|
---|
93 | /// <param name="Name">The name of the table</param>
|
---|
94 | /// <returns>The table column. Null if the table name is not found in the collection</returns>
|
---|
95 | public ExcelTableColumn this[string Name]
|
---|
96 | {
|
---|
97 | get
|
---|
98 | {
|
---|
99 | if (_colNames.ContainsKey(Name))
|
---|
100 | {
|
---|
101 | return _cols[_colNames[Name]];
|
---|
102 | }
|
---|
103 | else
|
---|
104 | {
|
---|
105 | return null;
|
---|
106 | }
|
---|
107 | }
|
---|
108 | }
|
---|
109 |
|
---|
110 | IEnumerator<ExcelTableColumn> IEnumerable<ExcelTableColumn>.GetEnumerator()
|
---|
111 | {
|
---|
112 | return _cols.GetEnumerator();
|
---|
113 | }
|
---|
114 |
|
---|
115 | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
---|
116 | {
|
---|
117 | return _cols.GetEnumerator();
|
---|
118 | }
|
---|
119 | internal string GetUniqueName(string name)
|
---|
120 | {
|
---|
121 | if (_colNames.ContainsKey(name))
|
---|
122 | {
|
---|
123 | var newName = name;
|
---|
124 | var i = 2;
|
---|
125 | do
|
---|
126 | {
|
---|
127 | newName = name+(i++).ToString(CultureInfo.InvariantCulture);
|
---|
128 | }
|
---|
129 | while (_colNames.ContainsKey(newName));
|
---|
130 | return newName;
|
---|
131 | }
|
---|
132 | return name;
|
---|
133 | }
|
---|
134 | }
|
---|
135 | }
|
---|