Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / XLPivotFields.cs
@Amir Amir on 9 Sep 2016 1 KB Project hierarchy cleanup
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    public class XLPivotFields: IXLPivotFields
    {
        private readonly Dictionary<String, IXLPivotField> _pivotFields = new Dictionary<string, IXLPivotField>();
        public IEnumerator<IXLPivotField> GetEnumerator()
        {
            return _pivotFields.Values.GetEnumerator();
        }

        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
        {
            return GetEnumerator();
        }

        public IXLPivotField Add(String sourceName)
        {
            return Add(sourceName, sourceName);
        }
        public IXLPivotField Add(String sourceName, String customName)
        {
            var pivotField = new XLPivotField(sourceName) {CustomName = customName};
            _pivotFields.Add(sourceName, pivotField);
            return pivotField;
        }

        public void Clear()
        {
            _pivotFields.Clear();
        }
        public void Remove(String sourceName)
        {
            _pivotFields.Remove(sourceName);
        }

        public int IndexOf(IXLPivotField pf)
        {
            var selectedItem = _pivotFields.Select((item, index) => new {Item = item, Position = index}).FirstOrDefault(i => i.Item.Key == pf.SourceName);
            if (selectedItem == null)
                throw new IndexOutOfRangeException("Invalid field name.");
            return selectedItem.Position;
        }
    }
}