Interface IXLRows
public interface IXLRows : IEnumerable<IXLRow>, IEnumerable
- Inherited Members
- Extension Methods
Properties
Height
Sets the height of all rows.
double Height { set; }
Property Value
- double
The height of all rows.
Style
IXLStyle Style { get; set; }
Property Value
Methods
AddHorizontalPageBreaks()
Adds a horizontal page break after these rows.
IXLRows AddHorizontalPageBreaks()
Returns
AdjustToContents()
Adjusts the height of all rows based on its contents.
IXLRows AdjustToContents()
Returns
AdjustToContents(double, double)
IXLRows AdjustToContents(double minHeight, double maxHeight)
Parameters
Returns
AdjustToContents(int)
Adjusts the height of all rows based on its contents, starting from the startColumn.
IXLRows AdjustToContents(int startColumn)
Parameters
startColumnintThe column to start calculating the row height.
Returns
AdjustToContents(int, double, double)
IXLRows AdjustToContents(int startColumn, double minHeight, double maxHeight)
Parameters
Returns
AdjustToContents(int, int)
Adjusts the height of all rows based on its contents, starting from the startColumn and ending at endColumn.
IXLRows AdjustToContents(int startColumn, int endColumn)
Parameters
startColumnintThe column to start calculating the row height.
endColumnintThe column to end calculating the row height.
Returns
AdjustToContents(int, int, double, double)
IXLRows AdjustToContents(int startColumn, int endColumn, double minHeight, double maxHeight)
Parameters
Returns
Cells()
Returns the collection of cells.
IXLCells Cells()
Returns
CellsUsed()
Returns the collection of cells that have a value.
IXLCells CellsUsed()
Returns
CellsUsed(XLCellsUsedOptions)
Returns the collection of cells that have a value.
IXLCells CellsUsed(XLCellsUsedOptions options)
Parameters
optionsXLCellsUsedOptionsThe options to determine whether a cell is used.
Returns
Clear(XLClearOptions)
Clears the contents of these rows.
IXLRows Clear(XLClearOptions clearOptions = XLClearOptions.All)
Parameters
clearOptionsXLClearOptionsSpecify what you want to clear.
Returns
Collapse()
Show all rows as collapsed.
void Collapse()
Delete()
Deletes all rows and shifts the rows below them accordingly.
void Delete()
Expand()
Expands all rows (if they're collapsed).
void Expand()
Group()
Increments the outline level of all rows by 1.
void Group()
Group(bool)
Increments the outline level of all rows by 1.
void Group(bool collapse)
Parameters
collapseboolIf set to
truethe rows will be shown collapsed.
Group(int)
Sets outline level for all rows.
void Group(int outlineLevel)
Parameters
outlineLevelintThe outline level.
Group(int, bool)
Sets outline level for all rows.
void Group(int outlineLevel, bool collapse)
Parameters
Hide()
Hides all rows.
void Hide()
Select()
void Select()
Ungroup()
Decrements the outline level of all rows by 1.
void Ungroup()
Ungroup(bool)
Decrements the outline level of all rows by 1.
void Ungroup(bool fromAll)
Parameters
fromAllboolIf set to
trueit will remove the rows from all outline levels.
Unhide()
Unhides all rows.
void Unhide()