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

namespace ClosedXML.Excel
{
    public interface IXLStyle: IEquatable<IXLStyle>
    {
        IXLAlignment Alignment { get; set; }
        IXLBorder Border { get; set; }
        IXLFill Fill { get; set; }
        IXLFont Font { get; set; }
        IXLNumberFormat NumberFormat { get; set; }
        IXLNumberFormat DateFormat { get; }
        IXLProtection Protection { get; set; }
    }
}