Newer
Older
ClosedXML / ClosedXML / Excel / ConditionalFormats / IXLCFIconSet.cs
@Francois Botha Francois Botha on 30 May 2017 433 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    public enum XLCFIconSetOperator {GreaterThan, EqualOrGreaterThan}
    public interface IXLCFIconSet
    {
        IXLCFIconSet AddValue(XLCFIconSetOperator setOperator, String value, XLCFContentType type);
        IXLCFIconSet AddValue(XLCFIconSetOperator setOperator, Double value, XLCFContentType type);
    }
}