Class ExcelRow
- Namespace
- OfficeOpenXml
- Assembly
- EPPlus.dll
Represents an individual row in the spreadsheet.
public class ExcelRow
- Inheritance
-
ExcelRow
- Inherited Members
Properties
Collapsed
If outline level is set this tells that the row is collapsed
public bool Collapsed { get; set; }
Property Value
CustomHeight
Set to true if You don't want the row to Autosize
public bool CustomHeight { get; set; }
Property Value
Height
Sets the height of the row
public double Height { get; set; }
Property Value
Hidden
Allows the row to be hidden in the worksheet
public bool Hidden { get; set; }
Property Value
Merged
Merge all cells in the row
public bool Merged { get; set; }
Property Value
OutlineLevel
Outline level.
public int OutlineLevel { get; set; }
Property Value
PageBreak
Adds a manual page break after the row.
public bool PageBreak { get; set; }
Property Value
Phonetic
Show phonetic Information
public bool Phonetic { get; set; }
Property Value
Row
Rownumber
public int Row { get; set; }
Property Value
RowID
Internal RowID.
[Obsolete]
public ulong RowID { get; }
Property Value
Style
The Style applied to the whole row. Only effekt cells with no individual style set. Use the Cells Style property if you want to set specific styles.
public ExcelStyle Style { get; }
Property Value
StyleID
Sets the style for the entire row using the style ID.
public int StyleID { get; set; }
Property Value
StyleName
Sets the style for the entire column using a style name.
public string StyleName { get; set; }