Show / Hide Table of Contents

Class EpplusTableColumnAttributeBase

Attribute used by LoadFromCollection<T>(IEnumerable<T>) to configure column parameters for the functions/>

Inheritance
object
Attribute
EpplusTableColumnAttributeBase
EpplusFormulaTableColumnAttribute
EpplusTableColumnAttribute
Inherited Members
Attribute.Equals(object)
Attribute.GetCustomAttribute(Assembly, Type)
Attribute.GetCustomAttribute(Assembly, Type, bool)
Attribute.GetCustomAttribute(MemberInfo, Type)
Attribute.GetCustomAttribute(MemberInfo, Type, bool)
Attribute.GetCustomAttribute(Module, Type)
Attribute.GetCustomAttribute(Module, Type, bool)
Attribute.GetCustomAttribute(ParameterInfo, Type)
Attribute.GetCustomAttribute(ParameterInfo, Type, bool)
Attribute.GetCustomAttributes(Assembly)
Attribute.GetCustomAttributes(Assembly, bool)
Attribute.GetCustomAttributes(Assembly, Type)
Attribute.GetCustomAttributes(Assembly, Type, bool)
Attribute.GetCustomAttributes(MemberInfo)
Attribute.GetCustomAttributes(MemberInfo, bool)
Attribute.GetCustomAttributes(MemberInfo, Type)
Attribute.GetCustomAttributes(MemberInfo, Type, bool)
Attribute.GetCustomAttributes(Module)
Attribute.GetCustomAttributes(Module, bool)
Attribute.GetCustomAttributes(Module, Type)
Attribute.GetCustomAttributes(Module, Type, bool)
Attribute.GetCustomAttributes(ParameterInfo)
Attribute.GetCustomAttributes(ParameterInfo, bool)
Attribute.GetCustomAttributes(ParameterInfo, Type)
Attribute.GetCustomAttributes(ParameterInfo, Type, bool)
Attribute.GetHashCode()
Attribute.IsDefaultAttribute()
Attribute.IsDefined(Assembly, Type)
Attribute.IsDefined(Assembly, Type, bool)
Attribute.IsDefined(MemberInfo, Type)
Attribute.IsDefined(MemberInfo, Type, bool)
Attribute.IsDefined(Module, Type)
Attribute.IsDefined(Module, Type, bool)
Attribute.IsDefined(ParameterInfo, Type)
Attribute.IsDefined(ParameterInfo, Type, bool)
Attribute.Match(object)
Attribute.TypeId
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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
In this article
Back to top Generated by DocFX