Newer
Older
ClosedXML / ClosedXML / Excel / ConditionalFormats / IXLConditionalFormats.cs
@Francois Botha Francois Botha on 30 May 2017 355 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 interface IXLConditionalFormats: IEnumerable<IXLConditionalFormat>
    {
        void Add(IXLConditionalFormat conditionalFormat);
        void RemoveAll();
        void Remove(Predicate<IXLConditionalFormat> predicate);
    }
}