Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / PivotValues / IXLPivotValueFormat.cs
@Francois Botha Francois Botha on 11 Nov 2016 269 bytes Fix pivot table custom number format
using System;

namespace ClosedXML.Excel
{
    public interface IXLPivotValueFormat : IXLNumberFormatBase, IEquatable<IXLNumberFormatBase>
    {
        IXLPivotValue SetNumberFormatId(Int32 value);

        IXLPivotValue SetFormat(String value);
    }
}