Newer
Older
ClosedXML / ClosedXML / Excel / Style / IXLFontBase.cs
@Amir Amir on 9 Sep 2016 589 bytes Project hierarchy cleanup
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; }


    }
}