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


namespace ClosedXML_Examples.Styles
{


    public class StyleFill : IXLExample
    {
        public void Create(String filePath)
        {
            var workbook = new XLWorkbook();
            var ws = workbook.Worksheets.Add("Style Fill");

            var co = 2;
            var ro = 1;

            ws.Cell(++ro, co + 1).Value = "BackgroundColor = Red";
            ws.Cell(ro, co).Style.Fill.BackgroundColor = XLColor.Red;

            ws.Cell(++ro, co + 1).Value = "PatternType = DarkTrellis; PatternColor = Orange; PatternBackgroundColor = Blue";
            ws.Cell(ro, co).Style.Fill.PatternType = XLFillPatternValues.DarkTrellis;
            ws.Cell(ro, co).Style.Fill.PatternColor = XLColor.Orange;
            ws.Cell(ro, co).Style.Fill.PatternBackgroundColor = XLColor.Blue;

            workbook.SaveAs(filePath);
        }
    }
}