Newer
Older
ClosedXML / ClosedXML / Excel / ConditionalFormats / IXLCFIconSet.cs
@Amir Amir on 9 Sep 2016 450 bytes Project hierarchy cleanup
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);
    }
}