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


namespace ClosedXML_Examples.PageSetup
{
    public class TwoPages : IXLExample
    {
        #region Methods

        // Public
        public void Create(String filePath)
        {
            var wb = new XLWorkbook();
            var ws = wb.Worksheets.Add("Sheet1");
            foreach (var ro in Enumerable.Range(1, 100))
            {
                foreach (var co in Enumerable.Range(1, 10))
                {
                    ws.Cell(ro, co).Value = ws.Cell(ro, co).Address.ToString();
                }
            }
            ws.PageSetup.PagesWide = 1;

            wb.SaveAs(filePath);
        }

        // Private

        // Override


        #endregion
    }
}