Newer
Older
ClosedXML / ClosedXML / Excel / Tables / IXLTableField.cs
@Francois Botha Francois Botha on 30 May 2017 581 bytes Unknown changes - something to do with line endings?
using System;

namespace ClosedXML.Excel
{
    public enum XLTotalsRowFunction
    {
        None,
        Sum,
        Minimum,
        Maximum,
        Average,
        Count,
        CountNumbers,
        StandardDeviation,
        Variance,
        Custom
    }

    public interface IXLTableField
    {
        Int32 Index { get; }
        String Name { get; set; }
        String TotalsRowLabel { get; set; }
        String TotalsRowFormulaA1 { get; set; }
        String TotalsRowFormulaR1C1 { get; set; }
        XLTotalsRowFunction TotalsRowFunction { get; set; }
    }
}