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

namespace ClosedXML.Excel
{
   

    public interface IXLFontBase
    {
        Boolean Bold { get; set; }
        Boolean Italic { get; set; }
        XLFontUnderlineValues Underline { get; set; }
        Boolean Strikethrough { get; set; }
        XLFontVerticalTextAlignmentValues VerticalAlignment { get; set; }
        Boolean Shadow { get; set; }
        Double FontSize { get; set; }
        XLColor FontColor { get; set; }
        String FontName { get; set; }
        XLFontFamilyNumberingValues FontFamilyNumbering { get; set; }


    }
}