Newer
Older
ClosedXML / ClosedXML / Excel / Style / IXLNumberFormat.cs
@Francois Botha Francois Botha on 30 May 2017 241 bytes Unknown changes - something to do with line endings?
using System;

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

        IXLStyle SetFormat(String value);
    }
}