Class EpplusTableColumnAttributeBase
- Namespace
- OfficeOpenXml.Attributes
- Assembly
- EPPlus.dll
Attribute used by LoadFromCollection<T>(IEnumerable<T>) to configure column parameters for the functions/>
public abstract class EpplusTableColumnAttributeBase : Attribute
- Inheritance
-
EpplusTableColumnAttributeBase
- Derived
- Inherited Members
Constructors
EpplusTableColumnAttributeBase()
protected EpplusTableColumnAttributeBase()
Properties
Header
Name shown in the header row, overriding the property name
public string Header { get; set; }
Property Value
Hidden
If true, the entire column will be hidden.
public bool Hidden { get; set; }
Property Value
NumberFormat
Excel format string for the column
public string NumberFormat { get; set; }
Property Value
NumberFormatId
A number to be used in a NumberFormatProvider. Default value is int.MinValue, which means it will be ignored.
public int NumberFormatId { get; set; }
Property Value
Order
Order of the columns value, default value is 0
public int Order { get; set; }
Property Value
TotalsRowFormula
Formula for the total row of this column.
public string TotalsRowFormula { get; set; }
Property Value
TotalsRowFunction
If not None the last cell in the column (the totals row) will contain a formula of the specified type.
public RowFunctions TotalsRowFunction { get; set; }
Property Value
TotalsRowLabel
Text in this columns cell in the totals row
public string TotalsRowLabel { get; set; }
Property Value
TotalsRowNumberFormat
Number format for this columns cell in the totals row.
public string TotalsRowNumberFormat { get; set; }
Property Value
UseBuiltInHyperlinkStyle
Indicates whether the Built in (default) hyperlink style should be applied to hyperlinks or not. Default value is true.
public bool UseBuiltInHyperlinkStyle { get; set; }