Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / PivotValues / IXLPivotValueFormat.cs
@Francois Botha Francois Botha on 10 Nov 2016 236 bytes Save pivot table value formats correctly
using System;

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

        IXLPivotValue SetFormat(String value);
    }
}