Newer
Older
ClosedXML / ClosedXML / Excel / ConditionalFormats / IXLCFColorScaleMin.cs
@Francois Botha Francois Botha on 30 May 2017 489 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 XLCFContentType { Number, Percent, Formula, Percentile, Minimum, Maximum }
    public interface IXLCFColorScaleMin
    {
        IXLCFColorScaleMid Minimum(XLCFContentType type, String value, XLColor color);
        IXLCFColorScaleMid Minimum(XLCFContentType type, Double value, XLColor color);
        IXLCFColorScaleMid LowestValue(XLColor color);
    }
}