Table of Contents

Interface IXLPrintAreas

Namespace
SlapKit.Excel.Excel
Assembly
SlapKit.Excel.dll
public interface IXLPrintAreas : IEnumerable<IXLRange>, IEnumerable
Inherited Members
Extension Methods

Methods

Add(IXLAddress, IXLAddress)

Adds a range to the print areas.

void Add(IXLAddress firstCellAddress, IXLAddress lastCellAddress)

Parameters

firstCellAddress IXLAddress

The first cell address.

lastCellAddress IXLAddress

The last cell address.

Add(int, int, int, int)

Adds a range to the print areas.

void Add(int firstCellRow, int firstCellColumn, int lastCellRow, int lastCellColumn)

Parameters

firstCellRow int

The first cell row.

firstCellColumn int

The first cell column.

lastCellRow int

The last cell row.

lastCellColumn int

The last cell column.

Add(string)

Adds a range to the print areas.

void Add(string rangeAddress)

Parameters

rangeAddress string

The range address to add.

Add(string, string)

Adds a range to the print areas.

void Add(string firstCellAddress, string lastCellAddress)

Parameters

firstCellAddress string

The first cell address.

lastCellAddress string

The last cell address.

Clear()

Removes the print areas from the worksheet.

void Clear()