Newer
Older
ClosedXML / ClosedXML / Excel / ConditionalFormats / IXLCFColorScaleMid.cs
@Amir Amir on 9 Sep 2016 552 bytes Project hierarchy cleanup
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    public interface IXLCFColorScaleMid
    {
        IXLCFColorScaleMax Midpoint(XLCFContentType type, String value, XLColor color);
        IXLCFColorScaleMax Midpoint(XLCFContentType type, Double value, XLColor color);
        void Maximum(XLCFContentType type, String value, XLColor color);
        void Maximum(XLCFContentType type, Double value, XLColor color);
        void HighestValue(XLColor color);
    }
}