Newer
Older
ClosedXML / ClosedXML / Excel / PageSetup / IXLPrintAreas.cs
using System;
using System.Collections.Generic;

namespace ClosedXML.Excel
{
    public interface IXLPrintAreas: IEnumerable<IXLRange>
    {
        /// <summary>Removes the print areas from the worksheet.</summary>
        void Clear();

        /// <summary>Adds a range to the print areas.</summary>
        /// <param name="firstCellRow">   The first cell row.</param>
        /// <param name="firstCellColumn">The first cell column.</param>
        /// <param name="lastCellRow">    The last cell row.</param>
        /// <param name="lastCellColumn"> The last cell column.</param>
        void Add(Int32 firstCellRow, Int32 firstCellColumn, Int32 lastCellRow, Int32 lastCellColumn);

        /// <summary>Adds a range to the print areas.</summary>
        /// <param name="rangeAddress">The range address to add.</param>
        void Add(String rangeAddress);

        /// <summary>Adds a range to the print areas.</summary>
        /// <param name="firstCellAddress">The first cell address.</param>
        /// <param name="lastCellAddress"> The last cell address.</param>
        void Add(String firstCellAddress, String lastCellAddress);

        /// <summary>Adds a range to the print areas.</summary>
        /// <param name="firstCellAddress">The first cell address.</param>
        /// <param name="lastCellAddress"> The last cell address.</param>
        void Add(IXLAddress firstCellAddress, IXLAddress lastCellAddress);
    }
}