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