Class ExcelTableColumn
Inheritance
System.Object
ExcelTableColumn
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: EPPlus.dll
Syntax
public class ExcelTableColumn : ExcelTableDxfBase
Properties
Sets a calculated column Formula.
Be carefull with this property since it is not validated.
tbl.Columns[9].CalculatedColumnFormula = string.Format("SUM(MyDataTable[[#This Row],[{0}]])",tbl.Columns[9].Name); //Reference within the current row
tbl.Columns[9].CalculatedColumnFormula = string.Format("MyDataTable[[#Headers],[{0}]]",tbl.Columns[9].Name); //Reference to a column header
tbl.Columns[9].CalculatedColumnFormula = string.Format("MyDataTable[[#Totals],[{0}]]",tbl.Columns[9].Name); //Reference to a column total
Declaration
public string CalculatedColumnFormula { get; set; }
Property Value
Type |
Description |
System.String |
|
DataCellStyleName
The named style for datacells in the column
Declaration
public string DataCellStyleName { get; set; }
Property Value
Type |
Description |
System.String |
|
Id
Declaration
public int Id { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
Name
Declaration
public string Name { get; set; }
Property Value
Type |
Description |
System.String |
|
Position
The position of the column
Declaration
public int Position { get; }
Property Value
Type |
Description |
System.Int32 |
|
Slicer
Returns the slicer attached to a column.
If the column has multiple slicers, the first is returned.
Declaration
public ExcelTableSlicer Slicer { get; }
Property Value
Table
Declaration
public ExcelTable Table { get; }
Property Value
Sets a custom Totals row Formula.
Be carefull with this property since it is not validated.
tbl.Columns[9].TotalsRowFormula = string.Format("SUM([{0}])",tbl.Columns[9].Name);
Declaration
public string TotalsRowFormula { get; set; }
Property Value
Type |
Description |
System.String |
|
TotalsRowFunction
Build-in total row functions.
To set a custom Total row formula use the TotalsRowFormula property
TotalsRowFormula
Declaration
public RowFunctions TotalsRowFunction { get; set; }
Property Value
TotalsRowLabel
A string text in the total row
Declaration
public string TotalsRowLabel { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
AddSlicer()
Declaration
public ExcelTableSlicer AddSlicer()
Returns