Interface IXLRangeRow
public interface IXLRangeRow : IXLRangeBase, IXLAddressable
- Inherited Members
- Extension Methods
Methods
Cell(int)
Gets the cell in the specified column.
IXLCell Cell(int columnNumber)
Parameters
columnNumberintThe cell's column.
Returns
Cell(string)
Gets the cell in the specified column.
IXLCell Cell(string columnLetter)
Parameters
columnLetterstringThe cell's column.
Returns
CellCount()
int CellCount()
Returns
Cells(int, int)
Returns the specified group of cells.
IXLCells Cells(int firstColumn, int lastColumn)
Parameters
firstColumnintThe first column in the group of cells to return.
lastColumnintThe last column in the group of cells to return.
Returns
Cells(string)
Returns the specified group of cells, separated by commas.
e.g. Cells("1"), Cells("1:5"), Cells("1:2,4:5")
IXLCells Cells(string cellsInRow)
Parameters
cellsInRowstringThe row's cells to return.
Returns
Cells(string, string)
Returns the specified group of cells.
IXLCells Cells(string firstColumn, string lastColumn)
Parameters
firstColumnstringThe first column in the group of cells to return.
lastColumnstringThe last column in the group of cells to return.
Returns
Clear(XLClearOptions)
Clears the contents of this row.
IXLRangeRow Clear(XLClearOptions clearOptions = XLClearOptions.All)
Parameters
clearOptionsXLClearOptionsSpecify what you want to clear.
Returns
CopyTo(IXLCell)
IXLRangeRow CopyTo(IXLCell target)
Parameters
targetIXLCell
Returns
CopyTo(IXLRangeBase)
IXLRangeRow CopyTo(IXLRangeBase target)
Parameters
targetIXLRangeBase
Returns
Delete()
Deletes this range and shifts the cells below.
void Delete()
Delete(XLShiftDeletedCells)
Deletes this range and shifts the surrounding cells accordingly.
void Delete(XLShiftDeletedCells shiftDeleteCells)
Parameters
shiftDeleteCellsXLShiftDeletedCellsHow to shift the surrounding cells.
InsertCellsAfter(int)
Inserts X number of cells to the right of this row.
All cells to the right of this row will be shifted X number of columns.
IXLCells InsertCellsAfter(int numberOfColumns)
Parameters
numberOfColumnsintNumber of cells to insert.
Returns
InsertCellsAfter(int, bool)
IXLCells InsertCellsAfter(int numberOfColumns, bool expandRange)
Parameters
Returns
InsertCellsBefore(int)
Inserts X number of cells to the left of this row.
This row and all cells to the right of it will be shifted X number of columns.
IXLCells InsertCellsBefore(int numberOfColumns)
Parameters
numberOfColumnsintNumber of cells to insert.
Returns
InsertCellsBefore(int, bool)
IXLCells InsertCellsBefore(int numberOfColumns, bool expandRange)
Parameters
Returns
InsertRowsAbove(int)
Inserts X number of rows on top of this row.
This row and all cells below it will be shifted X number of rows.
IXLRangeRows InsertRowsAbove(int numberOfRows)
Parameters
numberOfRowsintNumber of rows to insert.
Returns
InsertRowsAbove(int, bool)
IXLRangeRows InsertRowsAbove(int numberOfRows, bool expandRange)
Parameters
Returns
InsertRowsBelow(int)
Inserts X number of rows below this row.
All cells below this row will be shifted X number of rows.
IXLRangeRows InsertRowsBelow(int numberOfRows)
Parameters
numberOfRowsintNumber of rows to insert.
Returns
InsertRowsBelow(int, bool)
IXLRangeRows InsertRowsBelow(int numberOfRows, bool expandRange)
Parameters
Returns
Row(IXLCell, IXLCell)
IXLRangeRow Row(IXLCell start, IXLCell end)
Parameters
Returns
Row(int, int)
IXLRangeRow Row(int start, int end)
Parameters
Returns
RowAbove()
IXLRangeRow RowAbove()
Returns
RowAbove(int)
IXLRangeRow RowAbove(int step)
Parameters
stepint
Returns
RowBelow()
IXLRangeRow RowBelow()
Returns
RowBelow(int)
IXLRangeRow RowBelow(int step)
Parameters
stepint
Returns
RowNumber()
Gets this row's number in the range
int RowNumber()
Returns
RowUsed(XLCellsUsedOptions)
IXLRangeRow RowUsed(XLCellsUsedOptions options = XLCellsUsedOptions.AllContents)
Parameters
optionsXLCellsUsedOptions
Returns
Rows(string)
IXLRangeRows Rows(string rows)
Parameters
rowsstring
Returns
Sort()
IXLRangeRow Sort()
Returns
SortLeftToRight(XLSortOrder, bool, bool)
IXLRangeRow SortLeftToRight(XLSortOrder sortOrder = XLSortOrder.Ascending, bool matchCase = false, bool ignoreBlanks = true)
Parameters
sortOrderXLSortOrdermatchCaseboolignoreBlanksbool
Returns
WorksheetRow()
IXLRow WorksheetRow()