Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / PivotValues / IXLPivotValueCombination.cs
@Francois Botha Francois Botha on 30 May 2017 285 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    public interface IXLPivotValueCombination
    {
        IXLPivotValue And(String item);
        IXLPivotValue AndPrevious();
        IXLPivotValue AndNext();
    }
}