Table of Contents

Interface IXLTableRange

Namespace
SlapKit.Excel.Excel
Assembly
SlapKit.Excel.dll
public interface IXLTableRange : IXLRange, IXLRangeBase, IXLAddressable
Inherited Members
Extension Methods

Properties

Table

IXLTable Table { get; }

Property Value

IXLTable

Methods

FirstRow(Func<IXLTableRow, bool>)

IXLTableRow FirstRow(Func<IXLTableRow, bool> predicate = null)

Parameters

predicate Func<IXLTableRow, bool>

Returns

IXLTableRow

FirstRowUsed(XLCellsUsedOptions, Func<IXLTableRow, bool>)

IXLTableRow FirstRowUsed(XLCellsUsedOptions options, Func<IXLTableRow, bool> predicate = null)

Parameters

options XLCellsUsedOptions
predicate Func<IXLTableRow, bool>

Returns

IXLTableRow

FirstRowUsed(Func<IXLTableRow, bool>)

IXLTableRow FirstRowUsed(Func<IXLTableRow, bool> predicate = null)

Parameters

predicate Func<IXLTableRow, bool>

Returns

IXLTableRow

InsertRowsAbove(int)

IXLTableRows InsertRowsAbove(int numberOfRows)

Parameters

numberOfRows int

Returns

IXLTableRows

InsertRowsBelow(int)

IXLTableRows InsertRowsBelow(int numberOfRows)

Parameters

numberOfRows int

Returns

IXLTableRows

LastRow(Func<IXLTableRow, bool>)

IXLTableRow LastRow(Func<IXLTableRow, bool> predicate = null)

Parameters

predicate Func<IXLTableRow, bool>

Returns

IXLTableRow

LastRowUsed(XLCellsUsedOptions, Func<IXLTableRow, bool>)

IXLTableRow LastRowUsed(XLCellsUsedOptions options, Func<IXLTableRow, bool> predicate = null)

Parameters

options XLCellsUsedOptions
predicate Func<IXLTableRow, bool>

Returns

IXLTableRow

LastRowUsed(Func<IXLTableRow, bool>)

IXLTableRow LastRowUsed(Func<IXLTableRow, bool> predicate = null)

Parameters

predicate Func<IXLTableRow, bool>

Returns

IXLTableRow

Row(int)

Rows the specified row.

IXLTableRow Row(int row)

Parameters

row int

1-based row number relative to the first row of this range.

Returns

IXLTableRow

Rows(Func<IXLTableRow, bool>)

IXLTableRows Rows(Func<IXLTableRow, bool> predicate = null)

Parameters

predicate Func<IXLTableRow, bool>

Returns

IXLTableRows

Rows(int, int)

Returns a subset of the rows

IXLTableRows Rows(int firstRow, int lastRow)

Parameters

firstRow int

The first row to return. 1-based row number relative to the first row of this range.

lastRow int

The last row to return. 1-based row number relative to the first row of this range.

Returns

IXLTableRows

Rows(string)

IXLTableRows Rows(string rows)

Parameters

rows string

Returns

IXLTableRows

RowsUsed(XLCellsUsedOptions, Func<IXLTableRow, bool>)

IXLTableRows RowsUsed(XLCellsUsedOptions options, Func<IXLTableRow, bool> predicate = null)

Parameters

options XLCellsUsedOptions
predicate Func<IXLTableRow, bool>

Returns

IXLTableRows

RowsUsed(Func<IXLTableRow, bool>)

IXLTableRows RowsUsed(Func<IXLTableRow, bool> predicate = null)

Parameters

predicate Func<IXLTableRow, bool>

Returns

IXLTableRows