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

namespace ClosedXML.Excel
{
    public interface IXLCFDataBarMax
    {
        void Maximum(XLCFContentType type, String value);
        void Maximum(XLCFContentType type, Double value);
        void HighestValue();
    }
}